diff options
author | heinz <heinz@pkgsrc.org> | 2003-08-09 08:11:30 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2003-08-09 08:11:30 +0000 |
commit | bc46c9d9f8ea31482ab177be2bfcb4237b158843 (patch) | |
tree | 9e7300f71371aa0366d38e98f3f1e0f08148e5e2 /security/gnupg | |
parent | 4cad9c9591ba1fe808893630636fa691b945c457 (diff) | |
download | pkgsrc-bc46c9d9f8ea31482ab177be2bfcb4237b158843.tar.gz |
fix for bad sh behaviour on Solaris (already available in latest GnuPG snapshots)
Diffstat (limited to 'security/gnupg')
-rw-r--r-- | security/gnupg/patches/patch-ab | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/security/gnupg/patches/patch-ab b/security/gnupg/patches/patch-ab new file mode 100644 index 00000000000..f6520c3c670 --- /dev/null +++ b/security/gnupg/patches/patch-ab @@ -0,0 +1,23 @@ +$NetBSD: patch-ab,v 1.19 2003/08/09 08:11:30 heinz Exp $ + +--- checks/defs.inc.orig Thu May 1 15:17:46 2003 ++++ checks/defs.inc +@@ -99,9 +99,9 @@ pgmname=`basename $0` + [ -z "$srcdir" ] && fatal "not called from make" + + # Make sure we have a valid option files even with VPATH builds. +-if [ -f ./options]; then ++if [ -f ./options ]; then + : +-elif [ -f ./gpg.conf]; then ++elif [ -f ./gpg.conf ]; then + : + elif [ -f $srcdir/options ]; then + cat $srcdir/options >gpg.conf +@@ -112,4 +112,4 @@ GPG="../g10/gpg --homedir . " + exec 2> ${pgmname}.log + + : +-# end +\ No newline at end of file ++# end |