pkgsrc/security/gpgme03/patches/patch-ab
wiz 978951a718 Re-import the previous gpgme version for packages that still use the
older interface.

Does not coexist with newer version, so the PKGNAMEs are intended to
be the same.
2003-12-14 17:51:04 +00:00

14 lines
495 B
Text

$NetBSD: patch-ab,v 1.1.1.1 2003/12/14 17:51:04 wiz Exp $
--- tests/gpg/mkdemodirs.orig Wed Oct 17 06:08:55 2001
+++ tests/gpg/mkdemodirs Wed Jan 30 14:17:56 2002
@@ -25,7 +25,9 @@
echo -n "Creating:"
for name in $NAMES; do
echo -n " $name"
- [ -d $name ] && rm -r $name
+ if [ -d $name ]; then
+ rm -r $name
+ fi
mkdir $name
$GPGDEMO --export-secret-key -o - $name > $name/Secret.gpg
$GPG --homedir $name --allow-secret-key-import --import $name/Secret.gpg