summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorBrendan O'Dea <bod@debian.org>2010-07-04 12:19:15 +1000
committerBrendan O'Dea <bod@debian.org>2010-07-04 12:19:15 +1000
commite857879ffce061d7ee9ce796d737c83065aef801 (patch)
treee06c811aa90e5dd255406327020cf621ab64ba78 /Makefile.in
parent3bde996ebe6c2133899dc00365a32a663f14000b (diff)
downloadhelp2man-e857879ffce061d7ee9ce796d737c83065aef801.tar.gz
apply patch from Mike Frysinger to allow "make install -j" to workv1.38.3
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 121b4cc..334657e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -39,12 +39,13 @@ vpath_file = $$($(PERL) -e 'print +(grep -f, map "$$_/$$ARGV[0]", \
all: $(target) man info @extra_make_all@
install: all install_base @extra_make_install@
-install_base:
+install_dirs:
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1
$(MKINSTALLDIRS) $(DESTDIR)$(infodir)
+install_base: install_dirs
$(INSTALL_PROGRAM) $(target) $(DESTDIR)$(bindir)
$(INSTALL_DATA) $(call vpath_file,$(target).1) $(DESTDIR)$(mandir)/man1
$(INSTALL_DATA) $(call vpath_file,/$(target).info) \
@@ -56,10 +57,10 @@ install_base:
$(DESTDIR)$(infodir)/$(target).info; \
fi
-install_preload: preload
+install_preload: install_dirs preload
$(INSTALL_PROGRAM) $(preload).so $(DESTDIR)$(libdir)
-install_l10n: msg_l10n man_l10n
+install_l10n: install_dirs msg_l10n man_l10n
for lang in $(LINGUAS); \
do \
$(MKINSTALLDIRS) $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \