Kaydet (Commit) 52821cd8 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix condition

Change-Id: I8e70a62959dbeecd571c15c5b6fac1a41511a3f6
üst daddd329
......@@ -21,7 +21,15 @@ $(eval $(call gb_Library_add_cobjects,jpipe,\
jurt/source/pipe/wrapper/wrapper \
))
else ifeq ($(COM_GCC_IS_CLANG)$(filter -fsanitize=%,%(gb_CC)),)
else
ifeq ($(COM_GCC_IS_CLANG),TRUE)
ifneq ($(filter -fsanitize=%,$(gb_CC)),)
Library_jpipe__staticsalhack = TRUE
endif
endif
ifeq ($(Library_jpipe__staticsalhack),)
$(eval $(call gb_Library_use_libraries,jpipe,\
sal \
......@@ -75,5 +83,6 @@ $(call gb_LinkTarget_get_target,$(call gb_Library_get_linktarget,jpipe)): \
gb_CXX := $(filter-out -fsanitize=%,$(gb_CXX))
endif
endif
# vim:set noet sw=4 ts=4:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment