[Libreoffice-commits] core.git: Makefile.in

Samuel Thibault sthibault at hypra.fr
Mon Feb 19 18:23:09 UTC 2018


 Makefile.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8d4d2bf5405ef9d4b0b126f96f882f01031defd6
Author: Samuel Thibault <sthibault at hypra.fr>
Date:   Thu Feb 15 15:08:03 2018 +0100

    Fix specific targets for UIConfig submodules
    
    For instance,
    
    make UIConfig_uui
    
    allows to run the UIConfig target for the uui module. Submodules are called
    for instance modules/swriter, but
    
    make UIConfig_modules/swriter
    
    was not working only because the main Makefile didn't include the generic
    target.  This adds the generic target, thus fixing the issue.
    
    Change-Id: I6825fa5bf0daa4d964bea651841e8fac318fe068
    Reviewed-on: https://gerrit.libreoffice.org/49825
    Reviewed-by: Michael Stahl <mstahl at redhat.com>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/Makefile.in b/Makefile.in
index 2b7b4e2a7125..3fb86acf4dc1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -162,7 +162,7 @@ gbuild_TARGETS := AllLangHelp \
 	Zip \
 
 # build a generic gbuild target
-$(foreach target,$(gbuild_TARGETS),$(target)_% $(foreach module,$(gbuild_modules),$(target)_$(module)/%)) %.genpatch: bootstrap fetch
+$(foreach target,$(gbuild_TARGETS),$(target)_% $(foreach module,$(gbuild_modules),$(target)_$(module)/%)) UIConfig_modules/% %.genpatch: bootstrap fetch
 	$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
 
 #


More information about the Libreoffice-commits mailing list