diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-08 13:55:52 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-08 13:55:52 +0000 |
commit | 855b3237b6fbcbc58680399de65f3e705c0e3ecf (patch) | |
tree | a34ac79c36e3a1f746d0b28f4185d489780ba897 /app-arch/zip/files | |
parent | Stable on ppc; gcc-4 related; dragonheart is fine with the move. (diff) | |
download | gentoo-2-855b3237b6fbcbc58680399de65f3e705c0e3ecf.tar.gz gentoo-2-855b3237b6fbcbc58680399de65f3e705c0e3ecf.tar.bz2 gentoo-2-855b3237b6fbcbc58680399de65f3e705c0e3ecf.zip |
Replace gmake workaround with proper fix, thanks Mike in bug #139663.
(Portage version: 2.1.1_pre2-r6)
Diffstat (limited to 'app-arch/zip/files')
-rw-r--r-- | app-arch/zip/files/zip-2.31-make.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app-arch/zip/files/zip-2.31-make.patch b/app-arch/zip/files/zip-2.31-make.patch new file mode 100644 index 000000000000..0e862e62f275 --- /dev/null +++ b/app-arch/zip/files/zip-2.31-make.patch @@ -0,0 +1,13 @@ +Index: zip-2.31/unix/Makefile +=================================================================== +--- zip-2.31.orig/unix/Makefile ++++ zip-2.31/unix/Makefile +@@ -13,7 +13,7 @@ all: + + list: all + +-MAKE = make -f unix/Makefile ++MAKE := $(MAKE) -f unix/Makefile + SHELL = /bin/sh + LN = ln -s + |