diff options
author | mycroft <mycroft> | 2000-04-28 02:20:21 +0000 |
---|---|---|
committer | mycroft <mycroft> | 2000-04-28 02:20:21 +0000 |
commit | ebded336746ac6b1c4339bd6a9be791d51c5e1ca (patch) | |
tree | 1e9a063350a585d29eed4ee4f9d8017e2e1f9f32 | |
parent | 115d47cfd5a35bde4c94008cf88da67de9e41985 (diff) | |
download | pkgsrc-ebded336746ac6b1c4339bd6a9be791d51c5e1ca.tar.gz |
Wrap ${CC} and ${LD} in quotes -- in case they are multiple words.
-rw-r--r-- | security/pgp2/Makefile | 5 |
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}" |