diff options
author | Samuel Thibault <sthibault@hypra.fr> | 2018-02-15 15:08:03 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2018-02-19 19:22:45 +0100 |
commit | 8d4d2bf5405ef9d4b0b126f96f882f01031defd6 (patch) | |
tree | 96960fcae78fd1586dd70a754bfeca47a05aede4 /Makefile.in | |
parent | a703aced6cbb22aa690728a65b0d85e67f973bf4 (diff) |
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@redhat.com>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 $@ # |