diff options
author | seb <seb> | 2004-02-07 09:25:39 +0000 |
---|---|---|
committer | seb <seb> | 2004-02-07 09:25:39 +0000 |
commit | 441b752406af36283f35cdf26c1e892385cc550d (patch) | |
tree | 507191dc16558a23cf0deb4af2e5004719c4211d /devel/libtool | |
parent | aabe46439fadd43056da3f52c4321d40c7f31897 (diff) | |
download | pkgsrc-441b752406af36283f35cdf26c1e892385cc550d.tar.gz |
Fix endless loop in pathname canonicalization in install mode.
As seen in PR pkg/24333.
Fix from skrll@.
Bump PKGREVISION.
Diffstat (limited to 'devel/libtool')
-rw-r--r-- | devel/libtool/Makefile.common | 3 | ||||
-rw-r--r-- | devel/libtool/distinfo | 4 | ||||
-rw-r--r-- | devel/libtool/patches/patch-ac | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/devel/libtool/Makefile.common b/devel/libtool/Makefile.common index a51026f37e2..0e856990b9b 100644 --- a/devel/libtool/Makefile.common +++ b/devel/libtool/Makefile.common @@ -1,7 +1,8 @@ -# $NetBSD: Makefile.common,v 1.42 2004/02/05 21:30:00 jlam Exp $ +# $NetBSD: Makefile.common,v 1.43 2004/02/07 09:25:39 seb Exp $ # DISTNAME= libtool-1.5.2 +PKGREVISION= 1 CATEGORIES= devel pkgtools MASTER_SITES= ${MASTER_SITE_GNU:=libtool/} diff --git a/devel/libtool/distinfo b/devel/libtool/distinfo index f1dc271b3da..9f35bba89ae 100644 --- a/devel/libtool/distinfo +++ b/devel/libtool/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.33 2004/02/05 20:14:06 skrll Exp $ +$NetBSD: distinfo,v 1.34 2004/02/07 09:25:39 seb Exp $ SHA1 (libtool-1.5.2.tar.gz) = d6f1e8fb544d71b3c88fb959521b34b9b6290260 Size (libtool-1.5.2.tar.gz) = 2653072 bytes SHA1 (patch-aa) = 173b8f40ebb067e3bcea798b87e822a445d5688e SHA1 (patch-ab) = b59ac36c8d84a919193f454d670c61688bb91fe6 -SHA1 (patch-ac) = 1afb4149326a0090713f190d19bee4c6be6942dd +SHA1 (patch-ac) = 089536834faa3011bf2086b0ef15245b01a88eb9 diff --git a/devel/libtool/patches/patch-ac b/devel/libtool/patches/patch-ac index 1ab0922a149..965ead8e00a 100644 --- a/devel/libtool/patches/patch-ac +++ b/devel/libtool/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.9 2004/02/05 20:14:06 skrll Exp $ +$NetBSD: patch-ac,v 1.10 2004/02/07 09:25:39 seb Exp $ --- ltmain.sh.orig 2004-01-25 12:40:26.000000000 +0000 +++ ltmain.sh @@ -123,7 +123,7 @@ $NetBSD: patch-ac,v 1.9 2004/02/05 20:14:06 skrll Exp $ + # - strip any trailing / + tmp="" + while test "$dest" != "$tmp"; do -+ tmp=$arg ++ tmp=$dest + dest=`$echo "X$dest" | $Xsed -e 's%[^/.][^/.]*/\.\.%%g' -e 's%/\./%/%g' -e 's%//*%/%g' -e 's%/$%%g'` + done |