diff options
author | zuntum <zuntum@pkgsrc.org> | 2001-03-31 11:14:29 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2001-03-31 11:14:29 +0000 |
commit | ef5ca266353e502f307b04e9b0e63c98164396d7 (patch) | |
tree | e326d1f7fe1271e878770600b2b9f982a9cb0470 /security | |
parent | 3fc45822209b246b9e5e0981ed6bfc89e39a78ca (diff) | |
download | pkgsrc-ef5ca266353e502f307b04e9b0e63c98164396d7.tar.gz |
o Fix/add quoting
o Respect ${CFLAGS}
Diffstat (limited to 'security')
-rw-r--r-- | security/gnupg/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile index cd7466b316d..510db299cca 100644 --- a/security/gnupg/Makefile +++ b/security/gnupg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2001/03/27 03:20:15 hubertf Exp $ +# $NetBSD: Makefile,v 1.24 2001/03/31 11:14:30 zuntum Exp $ # FreeBSD Id: Makefile,v 1.20 1997/08/27 13:06:01 ache Exp # @@ -43,7 +43,7 @@ post-extract: post-build: cd ${WRKSRC} && \ - ${CC} -shared -Wl,-Bshareable -fPIC -o idea idea.c + ${CC} ${CFLAGS} -shared -Wl,-Bshareable -fPIC -o idea idea.c post-install: ${INSTALL_PROGRAM} ${WRKSRC}/idea ${PREFIX}/lib/gnupg |