[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - odk/examples

Rene Engelhard rene at debian.org
Mon Jul 17 17:30:04 UTC 2017


 odk/examples/DevelopersGuide/BasicAndDialogs/CreatingDialogs/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f13583ba838c921a9e6f8a80d4566d98b8ad0d6a
Author: Rene Engelhard <rene at debian.org>
Date:   Mon Jul 17 10:53:29 2017 +0200

    use ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
    
    ... instead of ifneq "$(SDK_AUTO_DEPLOYMENT)" "", as the variable is = NO
    if disabled
    
    Change-Id: I7dd2d165235f5cb7e55a8fed628ada71b04c7881
    Reviewed-on: https://gerrit.libreoffice.org/40078
    Reviewed-by: Rene Engelhard <rene at debian.org>
    Tested-by: Rene Engelhard <rene at debian.org>

diff --git a/odk/examples/DevelopersGuide/BasicAndDialogs/CreatingDialogs/Makefile b/odk/examples/DevelopersGuide/BasicAndDialogs/CreatingDialogs/Makefile
index bcd47ac1725f..3af249f9d4b0 100644
--- a/odk/examples/DevelopersGuide/BasicAndDialogs/CreatingDialogs/Makefile
+++ b/odk/examples/DevelopersGuide/BasicAndDialogs/CreatingDialogs/Makefile
@@ -106,7 +106,7 @@ $(COMPONENT_PACKAGE) : $(COMPONENT_JAR) $(COMPONENT_UNOPKG_MANIFEST)
 	cd $(subst /,$(PS),$(OUT_COMP_CLASS)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
 
 $(REGISTERFLAG) : $(COMPONENT_PACKAGE)
-ifneq "$(SDK_AUTO_DEPLOYMENT)" ""
+ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
 	-$(MKDIR) $(subst /,$(PS),$(@D))
 	$(DEPLOYTOOL) $(COMPONENT_PACKAGE_URL)


More information about the Libreoffice-commits mailing list