blob: f5591f2a8212030622c60d4de9bd43c8deec9f99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
From: Nathan Phillip Brink <binki@gentoo.org>
Date: 2011-01-03
Subject: [PATCH] Fix parallel make install.
--- a/Makefile.in
+++ b/Makefile.in
@@ -179,7 +179,7 @@
@(cd $(DESTDIR)/$(bindir) ; $(LN) scrollz-$(VERSION) scrollz)
@cp doc/ScrollZ.doc $(DESTDIR)/$(IRCDOC)
-installman: scrollz.1
+installman: installdirs scrollz.1
$(INSTALL) scrollz.1 $(DESTDIR)/$(mandir)
installserv: installio
@@ -197,7 +197,7 @@
$(DESTDIR)/$(INSTALL_SCRIPT) \
$(DESTDIR)/$(HELP_DIR) $(DESTDIR)/$(IRCDOC) $(DESTDIR)/$(mandir)
-installhelp:
+installhelp: installdirs
$(INSTALL_HELP_CMD)
find $(DESTDIR)/$(HELP_DIR) -type d -print | xargs chmod a+rx
find $(DESTDIR)/$(HELP_DIR) -type f -print | xargs chmod a+r
|