summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSebastian Geiger <sbastig@gmx.net>2014-10-09 13:43:05 +0200
committerSebastian Geiger <sbastig@gmx.net>2014-10-09 13:43:05 +0200
commit772643215db9c841ae31016b5e0fa12fca8ede61 (patch)
treed2653f4f77b3a5db6e3d59c20c320e5e12266429 /tools
parentd18d4ff5cb67a07977aa9957fe82322b22380ef3 (diff)
downloadyelp-tools-772643215db9c841ae31016b5e0fa12fca8ede61.tar.gz
Fixing make install issue
* This patch fixes bug #701959 which describes and issue that prevents make install from being successfully run if make has not been run first. * The problem is that make install requires some generated files to be present that are only generated by make. The solution was to add $(_HELP_LC_FILES) as a dependency to install-help so that these files are always generated when make install is run.
Diffstat (limited to 'tools')
-rw-r--r--tools/yelp.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/yelp.m4 b/tools/yelp.m4
index 20cab3a..5db847f 100644
--- a/tools/yelp.m4
+++ b/tools/yelp.m4
@@ -148,7 +148,7 @@ check-help:
.PHONY: install-help
install-data-am: $(if $(HELP_ID),install-help)
-install-help:
+install-help: $(_HELP_LC_FILES)
@for lc in C $(_HELP_LINGUAS); do \
$(mkinstalldirs) "$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)" || exit 1; \
done