diff options
author | wiz <wiz@pkgsrc.org> | 2002-08-07 12:47:51 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-08-07 12:47:51 +0000 |
commit | 9cabd583413b42004c5baff5090192a10db172b5 (patch) | |
tree | 4844346a717d0a819cc6630b176d3010ba168bd7 | |
parent | e58778ca636a120882cc62f0c4c34414ba1e5586 (diff) | |
download | pkgsrc-9cabd583413b42004c5baff5090192a10db172b5.tar.gz |
Fix LIBS line. Fixes bulk build problem.
-rw-r--r-- | graphics/jhead/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/jhead/Makefile b/graphics/jhead/Makefile index f82a5c30fd6..6385ffd2745 100644 --- a/graphics/jhead/Makefile +++ b/graphics/jhead/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2002/08/04 21:54:50 jdolecek Exp $ +# $NetBSD: Makefile,v 1.7 2002/08/07 12:47:51 wiz Exp $ # DISTNAME= jhead-1.8 @@ -9,7 +9,7 @@ MAINTAINER= veego@netbsd.org HOMEPAGE= http://www.sentex.net/~mwandel/jhead/ COMMENT= Extract EXIF header from JPEG image -LIBS= -lm -L${LOCALBASE}/lib -ljpeg +LIBS= -lm -L${BUILDLINK_DIR}/lib -Wl,-R${LOCALBASE}/lib -ljpeg do-build: cd ${WRKSRC} && \ |