diff options
author | skrll <skrll@pkgsrc.org> | 2001-06-20 08:10:49 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2001-06-20 08:10:49 +0000 |
commit | 52396237fe32856d4ea77f4ee57aaf26db06ebf2 (patch) | |
tree | e30ff632dd7beb048cedd527e60b358e8c2d3b66 /devel | |
parent | 6b68bdaaa3896ecd3215668caedcb79b7cbad810 (diff) | |
download | pkgsrc-52396237fe32856d4ea77f4ee57aaf26db06ebf2.tar.gz |
Fix --mode=execute quoting problem.
Bump to nb2. Fix has been sent to libtool maintainers.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libtool/Makefile.common | 4 | ||||
-rw-r--r-- | devel/libtool/distinfo | 4 | ||||
-rw-r--r-- | devel/libtool/patches/patch-ab | 13 |
3 files changed, 15 insertions, 6 deletions
diff --git a/devel/libtool/Makefile.common b/devel/libtool/Makefile.common index ab49e315494..59732f31b97 100644 --- a/devel/libtool/Makefile.common +++ b/devel/libtool/Makefile.common @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.common,v 1.11 2001/06/14 14:55:45 skrll Exp $ +# $NetBSD: Makefile.common,v 1.12 2001/06/20 08:10:49 skrll Exp $ # DISTNAME= libtool-ml-20010614 PKGPFX= ${DISTNAME:C/ml-/1.4./} -PKGREV= nb1 +PKGREV= nb2 WRKSRC= ${WRKDIR}/libtool-ml CATEGORIES= devel pkgtools MASTER_SITES= ${MASTER_SITE_LOCAL} diff --git a/devel/libtool/distinfo b/devel/libtool/distinfo index d376d260512..2aef4396fc2 100644 --- a/devel/libtool/distinfo +++ b/devel/libtool/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.6 2001/06/14 14:55:45 skrll Exp $ +$NetBSD: distinfo,v 1.7 2001/06/20 08:10:49 skrll Exp $ SHA1 (libtool-ml-20010614.tar.gz) = ff746666737e420592c3017d65bf4c47f1430dac Size (libtool-ml-20010614.tar.gz) = 784246 bytes SHA1 (patch-ac-new) = 61196acaa12edee0b1209b2ba7c6414453bfa438 SHA1 (patch-aa) = 4789e2ec97fbb987ce74992c5e78e918f2156b49 -SHA1 (patch-ab) = 37846c9ff30a6c422abd5150466b06190a5976bd +SHA1 (patch-ab) = 61419b5d6f69c64e4c21e628e1230ee8d17a63dd SHA1 (patch-ac) = 61196acaa12edee0b1209b2ba7c6414453bfa438 SHA1 (patch-ad) = 6aab76688d0f55648e35adc45a3492ba9c87acfb SHA1 (patch-ag) = 95ffb845d931e5ca32cbe73759baf725d435da10 diff --git a/devel/libtool/patches/patch-ab b/devel/libtool/patches/patch-ab index 8c0b757fd37..3407303347e 100644 --- a/devel/libtool/patches/patch-ab +++ b/devel/libtool/patches/patch-ab @@ -1,6 +1,6 @@ -$NetBSD: patch-ab,v 1.22 2001/06/14 14:55:47 skrll Exp $ +$NetBSD: patch-ab,v 1.23 2001/06/20 08:10:49 skrll Exp $ ---- ltmain.sh.orig Wed May 23 05:05:43 2001 +--- ltmain.sh.orig Thu Jun 14 05:06:50 2001 +++ ltmain.sh @@ -494,11 +494,18 @@ # command doesn't match the default compiler. @@ -64,3 +64,12 @@ $NetBSD: patch-ab,v 1.22 2001/06/14 14:55:47 skrll Exp $ fi if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then +@@ -5053,7 +5063,7 @@ + fi + + # Now prepare to actually exec the command. +- exec_cmd='"$cmd"$args' ++ exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then |