diff options
author | dmcmahill <dmcmahill> | 2007-06-19 14:19:03 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2007-06-19 14:19:03 +0000 |
commit | 78f4cc417fdd4c6ccf204433c9909bf409a6287d (patch) | |
tree | edff93d8a7c7bf8d88b89b4da48ec50efd182a74 /editors/vim-share/patches | |
parent | bd0a009c066f53c9af7a630483f1b92066fd9565 (diff) | |
download | pkgsrc-78f4cc417fdd4c6ccf204433c9909bf409a6287d.tar.gz |
portability fixes (use correct shell and avoid non-portable construct)
Diffstat (limited to 'editors/vim-share/patches')
-rw-r--r-- | editors/vim-share/patches/patch-ab | 17 |
1 files changed, 17 insertions, 0 deletions
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=$? + |