summaryrefslogtreecommitdiff
path: root/mail/exmh/scripts/build
diff options
context:
space:
mode:
Diffstat (limited to 'mail/exmh/scripts/build')
-rw-r--r--mail/exmh/scripts/build8
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/exmh/scripts/build b/mail/exmh/scripts/build
index 958a11f1652..a8bdef655ec 100644
--- a/mail/exmh/scripts/build
+++ b/mail/exmh/scripts/build
@@ -1,6 +1,6 @@
#! /bin/sh
#
-# $NetBSD: build,v 1.3 2000/03/06 10:25:28 wulf Exp $
+# $NetBSD: build,v 1.4 2001/10/22 21:46:50 agc Exp $
# FreeBSD Id: build,v 1.5 1997/08/21 08:09:56 peter Exp
#
@@ -15,6 +15,7 @@ FACES="{}"
DOMAIN="{}"
PGP="{}"
PGP5="{}"
+PGP6="{}"
GPG="{}"
GLIMPSE="{}"
PLAY="{}"
@@ -43,6 +44,10 @@ if [ -f ${PREFIX}/bin/pgp5 ]; then
PGP5=${PREFIX}/bin #bindir
fi
+if [ -f ${PREFIX}/bin/pgp6 ]; then
+ PGP6=${PREFIX}/bin #bindir
+fi
+
if [ -f ${PREFIX}/bin/gpg ]; then
GPG=${PREFIX}/bin #bindir
fi
@@ -70,6 +75,7 @@ sed <${FILESDIR}/config \
-e "s+!!DOMAIN!!+${DOMAIN}+g" \
-e "s+!!PGP!!+${PGP}+g" \
-e "s+!!PGP5!!+${PGP5}+g" \
+ -e "s+!!PGP6!!+${PGP6}+g" \
-e "s+!!GPG!!+${GPG}+g" \
-e "s+!!GLIMPSE!!+${GLIMPSE}+g" \
-e "s+!!PLAY!!+${PLAY}+g" \