diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-07-30 09:12:32 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-07-30 09:12:32 +0000 |
commit | 3cd43bd6a304d7922890323a2541a868990af83e (patch) | |
tree | 59521af8d84cf883bb7afc322214415b54bf0355 /app-editors/mp/files | |
parent | stable x86 (downgrade), bug 330357 (diff) | |
download | gentoo-2-3cd43bd6a304d7922890323a2541a868990af83e.tar.gz gentoo-2-3cd43bd6a304d7922890323a2541a868990af83e.tar.bz2 gentoo-2-3cd43bd6a304d7922890323a2541a868990af83e.zip |
Prll make fix, #326987
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/mp/files')
-rw-r--r-- | app-editors/mp/files/mp-5.1.1-prll.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-editors/mp/files/mp-5.1.1-prll.patch b/app-editors/mp/files/mp-5.1.1-prll.patch new file mode 100644 index 000000000000..4c6c9e822763 --- /dev/null +++ b/app-editors/mp/files/mp-5.1.1-prll.patch @@ -0,0 +1,39 @@ +diff --git a/makefile.in b/makefile.in +index b1cef14..e91a0c5 100644 +--- a/makefile.in ++++ b/makefile.in +@@ -26,10 +26,10 @@ version: + $(CC) $(CFLAGS) -I. `cat config.cflags` -c $< + + $(MPDM)/libmpdm.a: +- ( cd $(MPDM); $(MAKE) ) ++ $(MAKE) -C $(MPDM) + + $(MPSL)/libmpsl.a: +- ( cd $(MPSL); $(MAKE) ) ++ $(MAKE) -C $(MPSL) + + dep: + gcc -MM *.c `cat config.cflags` > makefile.depend +@@ -88,8 +88,8 @@ $(APPNAME).1: doc/mp_man.txt + grutatxt -m man -t "Minimum Profit" < doc/mp_man.txt > $(APPNAME).1 + + docs: $(DOCS) +- (cd $(MPDM); $(MAKE) docs) +- (cd $(MPSL); $(MAKE) docs) ++ $(MAKE) -C $(MPDM) docs ++ $(MAKE) -C $(MPSL) docs + + distcopy: distclean docs + mkdir -p $(DIST_TARGET) ; \ +@@ -134,8 +134,8 @@ install: $(INSTALL_MSG) installdoc install-mo + + installdoc: + ./mkinstalldirs $(PREFIX)/share/doc/$(APPNAME) +- ( cd $(MPDM); $(MAKE) installdoc ) +- ( cd $(MPSL); $(MAKE) installdoc ) ++ $(MAKE) -C $(MPDM) installdoc ++ $(MAKE) -C $(MPSL) installdoc + install -m 644 doc/* $(PREFIX)/share/doc/$(APPNAME) + install -m 644 $(ADD_DOCS) $(PREFIX)/share/doc/$(APPNAME) + [ -f doc/mp_index.html ] && install -m 644 doc/mp_index.html $(PREFIX)/share/doc/$(APPNAME)/index.html || true |