diff options
author | wiz <wiz> | 2002-07-31 10:29:29 +0000 |
---|---|---|
committer | wiz <wiz> | 2002-07-31 10:29:29 +0000 |
commit | 15c4c241a0c57308d1e84d7a56a4f24faae96cbd (patch) | |
tree | 60fc00e3567e87825d6e5c0acfeff07b61d20874 /archivers/zip | |
parent | f45535751cba79f4568709406d9642648974716f (diff) | |
download | pkgsrc-15c4c241a0c57308d1e84d7a56a4f24faae96cbd.tar.gz |
Use gcc on Solaris. Patch from Julien Letessier at sun dot com.
Diffstat (limited to 'archivers/zip')
-rw-r--r-- | archivers/zip/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/archivers/zip/Makefile b/archivers/zip/Makefile index 082fd6db171..753953018f8 100644 --- a/archivers/zip/Makefile +++ b/archivers/zip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2002/04/18 16:42:30 yyamano Exp $ +# $NetBSD: Makefile,v 1.28 2002/07/31 10:29:29 wiz Exp $ # FreeBSD Id: Makefile,v 1.10 1997/04/27 16:06:15 ache Exp # @@ -18,7 +18,14 @@ BUILD_DEPENDS= unzip-[0-9]*:../../archivers/unzip EXTRACT_ONLY= zip23.tar.gz MAKEFILE= unix/Makefile MAKE_FLAGS= LOCAL_ZIP="${CFLAGS}" LFLAGS1="${_STRIPFLAG_CC}" + +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "SunOS" +ALL_TARGET= generic_gcc +.else ALL_TARGET= generic +.endif USE_BUILDLINK_ONLY= # defined |