diff options
author | grant <grant@pkgsrc.org> | 2003-01-23 02:23:21 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-01-23 02:23:21 +0000 |
commit | f7b9c1222e15f73096e252c8da37f091edc53d6c (patch) | |
tree | 4d438b724bd7dde706abe3235b8d522fcd1d43d6 /security/openssl | |
parent | 55805f453af1c4e44d31f4d6f7a9456911e9d41f (diff) | |
download | pkgsrc-f7b9c1222e15f73096e252c8da37f091edc53d6c.tar.gz |
strip leading path from $CC so we don't try to run Configure with args
eg. 'solaris-sparcv7-/usr/pkg/bin/gcc' :-)
Diffstat (limited to 'security/openssl')
-rw-r--r-- | security/openssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 7c65b4073d8..b6d3999662a 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.63 2002/12/07 02:39:03 schmonz Exp $ +# $NetBSD: Makefile,v 1.64 2003/01/23 02:23:21 grant Exp $ DISTNAME= openssl-0.9.6g SVR4_PKGNAME= ossl @@ -84,7 +84,7 @@ PLIST_RSAREF= ${PKGDIR}/PLIST.rsaref .if (${OPSYS} == SunOS) && (${MACHINE_ARCH} == sparc) CONFIGURE_SCRIPT= Configure -CONFIGURE_ARGS+= solaris-${SPARC_TARGET_ARCH}-${CC} +CONFIGURE_ARGS+= solaris-${SPARC_TARGET_ARCH}-${CC:C|.*/||} .endif .include "../../mk/bsd.pkg.install.mk" |