summaryrefslogtreecommitdiff
path: root/security/gnupg/patches
diff options
context:
space:
mode:
authormarkd <markd>2006-07-08 21:29:24 +0000
committermarkd <markd>2006-07-08 21:29:24 +0000
commit9468fa362871579baebbd37eddc24a3fac62ed3d (patch)
tree96b14a9e3acb337e223c75639bb9618c81eceb2d /security/gnupg/patches
parent1e3c9f074204586cfb7644358ed080818645c475 (diff)
downloadpkgsrc-9468fa362871579baebbd37eddc24a3fac62ed3d.tar.gz
Solaris grep doesn't deal well with the binary output of tar when testing
if tar supports "ustar" so feed through strings before grep. Fixes PR pkg/33776.
Diffstat (limited to 'security/gnupg/patches')
-rw-r--r--security/gnupg/patches/patch-ac13
1 files changed, 13 insertions, 0 deletions
diff --git a/security/gnupg/patches/patch-ac b/security/gnupg/patches/patch-ac
new file mode 100644
index 00000000000..12325d09a6b
--- /dev/null
+++ b/security/gnupg/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.17 2006/07/08 21:29:24 markd Exp $
+
+--- configure.orig 2006-06-25 23:14:59.000000000 +1200
++++ configure
+@@ -4876,7 +4876,7 @@ fi
+ echo "$as_me:$LINENO: checking whether $_mytar speaks USTAR" >&5
+ echo $ECHO_N "checking whether $_mytar speaks USTAR... $ECHO_C" >&6
+ echo hithere > conftest.txt
+- $_mytar -cf - conftest.txt | grep -q ustar
++ $_mytar -cf - conftest.txt | strings | grep -q ustar
+ _tar_bad=$?
+ rm conftest.txt
+