diff options
author | Fabian Groffen <grobian@gentoo.org> | 2006-04-26 17:25:50 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2006-04-26 17:25:50 +0000 |
commit | 8fa65d535cbd849944e09161f05960485dd4093c (patch) | |
tree | a6fb6534168d48147bdacc38922a0c5b1da00198 /media-gfx/pngcrush/files | |
parent | Added ~alpha keyword. (diff) | |
download | gentoo-2-8fa65d535cbd849944e09161f05960485dd4093c.tar.gz gentoo-2-8fa65d535cbd849944e09161f05960485dd4093c.tar.bz2 gentoo-2-8fa65d535cbd849944e09161f05960485dd4093c.zip |
Adding patch not to let `as` wait for input from stdin on OSX. Fixes bug (#131260)
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'media-gfx/pngcrush/files')
-rw-r--r-- | media-gfx/pngcrush/files/digest-pngcrush-1.6.2 | 2 | ||||
-rw-r--r-- | media-gfx/pngcrush/files/pngcrush-1.6.2-ascall.patch | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/media-gfx/pngcrush/files/digest-pngcrush-1.6.2 b/media-gfx/pngcrush/files/digest-pngcrush-1.6.2 index 0d3db43a84f1..d4f15cbd25d8 100644 --- a/media-gfx/pngcrush/files/digest-pngcrush-1.6.2 +++ b/media-gfx/pngcrush/files/digest-pngcrush-1.6.2 @@ -1 +1,3 @@ MD5 c32f3b1a7fd4b7dee81fbd78ae5d1530 pngcrush-1.6.2.tar.gz 374501 +RMD160 e0961fc79e3785ea987ba1592f4d3c17e9db4feb pngcrush-1.6.2.tar.gz 374501 +SHA256 800231bbe7d4fb3f248257406121b27abfff2b6b47af174f53fac2f72cfcd388 pngcrush-1.6.2.tar.gz 374501 diff --git a/media-gfx/pngcrush/files/pngcrush-1.6.2-ascall.patch b/media-gfx/pngcrush/files/pngcrush-1.6.2-ascall.patch new file mode 100644 index 000000000000..06defb5b6ebc --- /dev/null +++ b/media-gfx/pngcrush/files/pngcrush-1.6.2-ascall.patch @@ -0,0 +1,11 @@ +--- pngcrush-1.6.2/Makefile ++++ pngcrush-1.6.2/Makefile +@@ -10,7 +10,7 @@ + + # macros -------------------------------------------------------------------- + +-GAS_VERSION := $(shell as --version | grep "GNU assembler" | sed -e 's/GNU assembler //' -e 's/ .*//') ++GAS_VERSION := $(shell as --version < /dev/null 2&>1 | grep "GNU assembler" | sed -e 's/GNU assembler //' -e 's/ .*//') + + # uncomment these 2 lines only if you are using an external copy of zlib: + #ZINC = ../../zlib |