diff options
author | grant <grant@pkgsrc.org> | 2002-07-16 09:07:39 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2002-07-16 09:07:39 +0000 |
commit | 8f0a1a5d12432a56841bba6568ab2cbc46cb2bf3 (patch) | |
tree | 1839831b6f458365e72facff1fa6cc3da0736841 /archivers | |
parent | 56a75258e64cd61041e72ea439a32a7874b1b141 (diff) | |
download | pkgsrc-8f0a1a5d12432a56841bba6568ab2cbc46cb2bf3.tar.gz |
add ${LDFLAGS} so that libz is found when it is not in a system
library path.
fixes build problem on zoularis.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/unzip/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/unzip/Makefile b/archivers/unzip/Makefile index 0cb83d52654..66a79da3030 100644 --- a/archivers/unzip/Makefile +++ b/archivers/unzip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2002/02/27 04:45:57 yyamano Exp $ +# $NetBSD: Makefile,v 1.32 2002/07/16 09:07:39 grant Exp $ # FreeBSD Id: Makefile,v 1.14 1997/06/19 05:30:04 ache Exp # @@ -19,7 +19,7 @@ USE_BUILDLINK_ONLY= # defined MAKEFILE= unix/Makefile ALL_TARGET= generic_zlib unzipsfx -MAKE_FLAGS= CF="${CFLAGS} -I. -DBSD -DUNIX -Dunix -DUSE_UNSHRINK" LF2="-lz ${_STRIPFLAG_CC}" +MAKE_FLAGS= CF="${CFLAGS} -I. -DBSD -DUNIX -Dunix -DUSE_UNSHRINK" LF2="-lz ${_STRIPFLAG_CC} ${LDFLAGS}" do-install: cd ${WRKSRC} && ${INSTALL_PROGRAM} unzip funzip unzipsfx ${PREFIX}/bin |