diff options
author | grant <grant> | 2002-07-16 09:07:39 +0000 |
---|---|---|
committer | grant <grant> | 2002-07-16 09:07:39 +0000 |
commit | 0a8fec2fffac0dcc5f07602bab3c84455b34b0fb (patch) | |
tree | 1839831b6f458365e72facff1fa6cc3da0736841 /archivers | |
parent | b7bc2a5dc1a664551023e0b82202d2360fe7536b (diff) | |
download | pkgsrc-0a8fec2fffac0dcc5f07602bab3c84455b34b0fb.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 |