Skip to content

Commit

Permalink
cmake.eclass: Fix CMAKE_VERBOSE logic
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Sturmlechner <[email protected]>
  • Loading branch information
a17r committed Jan 5, 2020
1 parent 49db5f0 commit a17850c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eclass/cmake.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -569,8 +569,8 @@ cmake_build() {
emake)
[[ -e Makefile ]] || die "Makefile not found. Error during configure stage."
case ${CMAKE_VERBOSE} in
OFF) emake VERBOSE=1 "$@" ;;
*) emake "$@" ;;
OFF) emake "$@" ;;
*) emake VERBOSE=1 "$@" ;;
esac
;;
ninja)
Expand Down

0 comments on commit a17850c

Please sign in to comment.