This is an automated email from the ASF dual-hosted git repository.

jim pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 8b5576c  protect empty vars - fix 
https://github.com/apache/openoffice/commit/2d5709ddcf2cff97da30b2b98b71afda0c77781e
8b5576c is described below

commit 8b5576ce2f085d55bb1b6ad191acef7e88814942
Author: Jim Jagielski <[email protected]>
AuthorDate: Thu Oct 3 12:15:28 2019 -0400

    protect empty vars - fix 
https://github.com/apache/openoffice/commit/2d5709ddcf2cff97da30b2b98b71afda0c77781e
---
 main/cui/Library_cui.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main/cui/Library_cui.mk b/main/cui/Library_cui.mk
index 927ba50..dbeb4dd 100644
--- a/main/cui/Library_cui.mk
+++ b/main/cui/Library_cui.mk
@@ -33,8 +33,8 @@ $(eval $(call gb_Library_set_include,cui,\
        -I$(SRCDIR)/cui/source/inc \
 ))
 
-ifneq ($(BUILD_VER_STRING),)
-$$(eval $$(call 
gb_Library_add_defs,cui,-DBUILD_VER_STRING="$(BUILD_VER_STRING)"))
+ifneq ($(strip $(BUILD_VER_STRING)),)
+$(eval $(call 
gb_Library_add_defs,cui,-DBUILD_VER_STRING="$(BUILD_VER_STRING)"))
 endif
 
 $(eval $(call gb_Library_add_defs,cui,\

Reply via email to