diff options
author | apb <apb@pkgsrc.org> | 2013-01-24 18:23:51 +0000 |
---|---|---|
committer | apb <apb@pkgsrc.org> | 2013-01-24 18:23:51 +0000 |
commit | 9c3c9e13c2dc44b2ff00cdc9d3137a99153cde84 (patch) | |
tree | a3c73c9abb86ed4c56f43de90f8ada296cb0440b /lang | |
parent | 51f9ddad291f24379ddf9d0533194dcb9c6724f5 (diff) | |
download | pkgsrc-9c3c9e13c2dc44b2ff00cdc9d3137a99153cde84.tar.gz |
Don't be confused by '=' in output from "uname -a".
PR pkg/45814, also reported upstream at
<https://rt.perl.org/rt3/Public/Bug/Display.html?id=116523>.
Not bumping PKGREVISION because there should be no change in
the resulting package, on systems where the build was successful.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/perl5/distinfo | 4 | ||||
-rw-r--r-- | lang/perl5/patches/patch-ca | 23 |
2 files changed, 23 insertions, 4 deletions
diff --git a/lang/perl5/distinfo b/lang/perl5/distinfo index 805c22af935..c4a42271236 100644 --- a/lang/perl5/distinfo +++ b/lang/perl5/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.91 2013/01/17 13:29:59 manu Exp $ +$NetBSD: distinfo,v 1.92 2013/01/24 18:23:51 apb Exp $ SHA1 (perl-5.16.2.tar.gz) = 9e20e38e3460ebbac895341fd70a02189d03a490 RMD160 (perl-5.16.2.tar.gz) = 84f0233ac48059b4636661b023dd8a3389f9ae64 @@ -8,7 +8,7 @@ SHA1 (patch-ab) = a9c674c5b09700d13fa885f11a3525d6d54899b5 SHA1 (patch-ac) = cd918ae7aedddfcd3d555a1d1388c4c8719ccd12 SHA1 (patch-ah) = f66b496ba8f7b7d3e5a1f0c6f03d051a652f426e SHA1 (patch-aq) = 4bf5a76f0277b0939b2ca7720f4bb045a788b5cc -SHA1 (patch-ca) = 30450f739f51a07825442744d6c38b27b58ddd87 +SHA1 (patch-ca) = 746789b98a4e7c3b84f145c85181d9838c1288ae SHA1 (patch-ch) = 5b6a89c82e158bab0a5f06add48c28e600678099 SHA1 (patch-ck) = 5c381db130cdf4c315678e2d65380eaaa3065fee SHA1 (patch-cn) = d1877383e213a414562b5bb4c1e8aa785926fab7 diff --git a/lang/perl5/patches/patch-ca b/lang/perl5/patches/patch-ca index 926dd4f160b..c640897aa1a 100644 --- a/lang/perl5/patches/patch-ca +++ b/lang/perl5/patches/patch-ca @@ -1,7 +1,26 @@ -$NetBSD: patch-ca,v 1.12 2012/10/03 19:59:47 adam Exp $ +$NetBSD: patch-ca,v 1.13 2013/01/24 18:23:51 apb Exp $ ---- Configure.orig 2012-08-03 17:35:26.000000000 +0000 +* Don't be confused by '=' in output from "uname -a". + PR pkg/45814, also reported upstream at + <https://rt.perl.org/rt3/Public/Bug/Display.html?id=116523>. + +* Use "uname -r" to get OS version for *BSD. + +* Move $loclibpth to the end of $dlist, instead of the beginning. + +* Several other changes. + +--- Configure.orig 2012-10-26 02:44:14.000000000 +0000 +++ Configure +@@ -3099,7 +3099,7 @@ myuname=`$uname -a 2>/dev/null` + $test -z "$myuname" && myuname=`hostname 2>/dev/null` + # tr '[A-Z]' '[a-z]' would not work in EBCDIC + # because the A-Z/a-z are not consecutive. +-myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e "s,['/],,g" | \ ++myuname=`echo $myuname | $sed -e 's/^[^= ]*=//' -e "s,['/],,g" | \ + ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '` + newmyuname="$myuname" + dflt=n @@ -3265,13 +3265,14 @@ EOM osvers="$3" ;; |