diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-29 17:14:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-29 17:14:53 +0200 |
commit | 6bc81d4e78184cf57d6bc99f1f2dba6938b4fa85 (patch) | |
tree | 91040e9fbcee72bbf34f500a4f83d1edfc0e4a07 /external/libebook/ExternalProject_libebook.mk | |
parent | 5990beed9aba690ea9487e2c4a64615b7504a0a1 (diff) |
Simplify some $ENABLE_DEBUG expressions
Change-Id: I9f60fd317f3a2995a182d51d06059bd994cf837c
Diffstat (limited to 'external/libebook/ExternalProject_libebook.mk')
-rw-r--r-- | external/libebook/ExternalProject_libebook.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/libebook/ExternalProject_libebook.mk b/external/libebook/ExternalProject_libebook.mk index 293028f1a791..ca1c7e478f2a 100644 --- a/external/libebook/ExternalProject_libebook.mk +++ b/external/libebook/ExternalProject_libebook.mk @@ -34,7 +34,7 @@ $(call gb_ExternalProject_get_state_target,libebook,build) : --without-docs \ --without-tools \ --disable-tests \ - $(if $(filter TRUE,$(ENABLE_DEBUG)),--enable-debug,--disable-debug) \ + $(if $(ENABLE_DEBUG),--enable-debug,--disable-debug) \ $(if $(VERBOSE)$(verbose),--disable-silent-rules,--enable-silent-rules) \ --disable-werror \ --disable-weffc \ |