summaryrefslogtreecommitdiff
path: root/security/pgp2
diff options
context:
space:
mode:
authormycroft <mycroft@pkgsrc.org>2000-04-28 02:20:21 +0000
committermycroft <mycroft@pkgsrc.org>2000-04-28 02:20:21 +0000
commit8e94d6ada1be3bfad6b623e629fddacb58addbb7 (patch)
tree1e9a063350a585d29eed4ee4f9d8017e2e1f9f32 /security/pgp2
parent478a1a3ec48da5cfe86fd405473dfb6ef5b7fcb3 (diff)
downloadpkgsrc-8e94d6ada1be3bfad6b623e629fddacb58addbb7.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}"