diff options
author | dmcmahill <dmcmahill> | 2007-06-19 14:19:03 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2007-06-19 14:19:03 +0000 |
commit | 80701152686344e3f4714b7a27c9239b7e9aba28 (patch) | |
tree | edff93d8a7c7bf8d88b89b4da48ec50efd182a74 /editors | |
parent | 7f38a7aa0425cfceb0f31a80fec0edabbe6eff32 (diff) | |
download | pkgsrc-80701152686344e3f4714b7a27c9239b7e9aba28.tar.gz |
portability fixes (use correct shell and avoid non-portable construct)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vim-share/distinfo | 3 | ||||
-rw-r--r-- | editors/vim-share/patches/patch-ab | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/editors/vim-share/distinfo b/editors/vim-share/distinfo index 20beff96cee..116d5461841 100644 --- a/editors/vim-share/distinfo +++ b/editors/vim-share/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.74 2007/05/16 04:56:25 martti Exp $ +$NetBSD: distinfo,v 1.75 2007/06/19 14:19:03 dmcmahill Exp $ SHA1 (vim/7.1.001) = c9145f875924f0b74d353f293e45f5ce43cd4b95 RMD160 (vim/7.1.001) = c9c7d215b0dceb6b70f756dfd7339b11e8ca3d13 @@ -16,5 +16,6 @@ SHA1 (vim/vim-7.1.tar.bz2) = 981e1acecc4d8f15680b6e160de84aed038d857d RMD160 (vim/vim-7.1.tar.bz2) = 470775e0d0219cafe7e04dd91199ed7441882456 Size (vim/vim-7.1.tar.bz2) = 6876053 bytes SHA1 (patch-aa) = 295e02a4e95dc4b0a0e0036c68fa48cb061d840a +SHA1 (patch-ab) = 6d27ed09cb741313e57b3550e62977797f7b285e SHA1 (patch-ad) = 64a58a538f8f48b4db7416b4ffec081ed6625329 SHA1 (patch-zb) = d52bdc3b77c30c804e78c2c6a4182fad8096c9f0 diff --git a/editors/vim-share/patches/patch-ab b/editors/vim-share/patches/patch-ab new file mode 100644 index 00000000000..8521c02c675 --- /dev/null +++ b/editors/vim-share/patches/patch-ab @@ -0,0 +1,17 @@ +$NetBSD: patch-ab,v 1.7 2007/06/19 14:19:03 dmcmahill Exp $ + +use the right shell and avoid a non-portable construct +Needed to configure on SunOS-5.9/sparc. + +--- src/configure.orig 2007-06-15 13:31:37.404435000 -0400 ++++ src/configure 2007-06-15 13:41:16.409314000 -0400 +@@ -1,6 +1,7 @@ + #! /bin/sh + # run the automatically generated configure script +-CONFIG_STATUS=auto/config.status \ +- auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache ++CONFIG_STATUS=auto/config.status ++export CONFIG_STATUS ++$CONFIG_SHELL auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache + result=$? + |