summaryrefslogtreecommitdiff
path: root/security/pgp2
diff options
context:
space:
mode:
authormycroft <mycroft>2000-04-28 02:20:21 +0000
committermycroft <mycroft>2000-04-28 02:20:21 +0000
commit7937dd2826d01d19a88b0259cea7923aed93c83d (patch)
tree1e9a063350a585d29eed4ee4f9d8017e2e1f9f32 /security/pgp2
parent90f5279d17e7fa9fe21a3024a2fb7f7415e896f1 (diff)
downloadpkgsrc-7937dd2826d01d19a88b0259cea7923aed93c83d.tar.gz
Wrap ${CC} and ${LD} in quotes -- in case they are multiple words.
Diffstat (limited to 'security/pgp2')
-rw-r--r--security/pgp2/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/security/pgp2/Makefile b/security/pgp2/Makefile
index 31f7c523984..6e18018c4e8 100644
--- a/security/pgp2/Makefile
+++ b/security/pgp2/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.22 2000/02/05 04:37:08 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2000/04/28 02:20:21 mycroft Exp $
# FreeBSD Id: Makefile,v 1.20 1997/08/27 13:06:01 ache Exp
#
@@ -69,7 +69,8 @@ post-extract:
cd ${WRKDIR} && ${GTAR} xf pgp263ii.tar && ${RM} -f pgp263ii.tar
do-build:
- cd ${WRKSRC} && ${MAKE} all CC=${CC} LD=${CC} OBJS_EXT="${OBJS_EXT}" \
+ cd ${WRKSRC} && ${MAKE} all CC="${CC}" LD="${CC}" \
+ OBJS_EXT="${OBJS_EXT}" \
CFLAGS="${CFLAGS} ${RSAINC} ${ASMFLAG} -O2 -DUNIX -DIDEA32 \
-DMAX_NAMELEN=255" RSALIBS="${RSALIBS}" RSAOBJS="${RSAOBJS}"