diff options
author | tron <tron@pkgsrc.org> | 2008-12-02 10:16:30 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2008-12-02 10:16:30 +0000 |
commit | 5c8a5414e1927b040d39e2e7c7341b93649f5c17 (patch) | |
tree | ef5b9f3aae6c31b9bdaf352656ce1f9459dc0cf1 /sysutils/coreutils | |
parent | 7359b60f45618103892c33ccb38a21c530b687a5 (diff) | |
download | pkgsrc-5c8a5414e1927b040d39e2e7c7341b93649f5c17.tar.gz |
Add build fix for Solaris taken from
http://www.nabble.com/coreutils-6.12-fails-to-build-on-Solaris-td20137586.html
as suggested by Tim Zingelman in private e-mail.
Diffstat (limited to 'sysutils/coreutils')
-rw-r--r-- | sysutils/coreutils/distinfo | 3 | ||||
-rw-r--r-- | sysutils/coreutils/patches/patch-aa | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/sysutils/coreutils/distinfo b/sysutils/coreutils/distinfo index 33e13dad164..101c7aeaca0 100644 --- a/sysutils/coreutils/distinfo +++ b/sysutils/coreutils/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.16 2008/10/29 22:34:18 tron Exp $ +$NetBSD: distinfo,v 1.17 2008/12/02 10:16:30 tron Exp $ SHA1 (coreutils-6.12.tar.gz) = 1bb297fdf8b38ca19ab5252c6179b1b2aecd020e RMD160 (coreutils-6.12.tar.gz) = 95b941657242cfc3f67d721e582a60a4090802ec Size (coreutils-6.12.tar.gz) = 9001890 bytes +SHA1 (patch-aa) = 0bfbfe0f60576d2bb8b996df297c79ccf0806115 SHA1 (patch-ab) = bc1e79814a6ebc177862eae1816a24e3a4a5c577 SHA1 (patch-ad) = 145a88a6731fbec315037a140677f2fc763e5026 SHA1 (patch-ag) = 3e24b8e025a151eb7bed4c778a326da5eed09ded diff --git a/sysutils/coreutils/patches/patch-aa b/sysutils/coreutils/patches/patch-aa new file mode 100644 index 00000000000..37980b9fb62 --- /dev/null +++ b/sysutils/coreutils/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.5 2008/12/02 10:16:30 tron Exp $ + +--- configure.orig Sat May 31 16:23:27 2008 ++++ configure Mon Dec 1 13:22:27 2008 +@@ -70407,7 +70407,7 @@ + v=EXTRA_PROGRAMS + for gl_i in `sed -n '/^'$v' =/,/[^\]$/p' $mk \ + | sed 's/^ *//;/^\$.*/d;/^'$v' =/d' \ +- | tr -s '\\015\\012\\\\' ' '`; do ++ | tr -s '\\015\\012\\\\' ' '`; do + { + if test -z "$optional_bin_progs"; then + optional_bin_progs=$gl_i +@@ -70546,7 +70546,7 @@ + + # Change ginstall.1 to "install.h" in $MAN. + MAN=`for m in $MAN; do test $m = ginstall.1 && m=install.1; echo $m; done \ +- | tr '\015\012' ' '; echo` ++ | tr '\015\012' ' '; echo` + + # Remove [.1, since writing a portable rule for it in man/Makefile.am + # is not practical. The sed LHS below uses the autoconf quadrigraph |