aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsunpoet <sunpoet@FreeBSD.org>2013-09-01 23:49:52 +0800
committersunpoet <sunpoet@FreeBSD.org>2013-09-01 23:49:52 +0800
commit97063e6901c78f2eb6400099c5a5fbcaafb8b982 (patch)
tree961270b26e26f6784aa62bfc1a30911632c1668e
parent1645c812e576b17e31768875245f033b6e5019f7 (diff)
downloadfreebsd-ports-gnome-97063e6901c78f2eb6400099c5a5fbcaafb8b982.tar.gz
freebsd-ports-gnome-97063e6901c78f2eb6400099c5a5fbcaafb8b982.tar.zst
freebsd-ports-gnome-97063e6901c78f2eb6400099c5a5fbcaafb8b982.zip
- Fix USE_LDCONFIG: remove unnecessary ${PREFIX}/lib which affects lib-depends: output for ports with new LIB_DEPENDS format
Here is an example % cd /usr/ports/science/udunits % make build ===> udunits-2.1.24_1 depends on package: libtool>=2.4 - found ===> udunits-2.1.24_1 depends on shared library: libexpat.so - found - found It was caused by duplicate /usr/local/lib entry in $$dirs in bsd.port.mk lib-depends:
-rw-r--r--www/httrack/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/httrack/Makefile b/www/httrack/Makefile
index 5c37b02dd506..4bb6b8bdaf72 100644
--- a/www/httrack/Makefile
+++ b/www/httrack/Makefile
@@ -20,7 +20,7 @@ CONFIGURE_ARGS= --docdir="${DOCSDIR}"
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
USE_AUTOTOOLS= libtool
-USE_LDCONFIG= ${PREFIX}/lib ${PREFIX}/lib/${PORTNAME}
+USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}
USES= gmake iconv
MAN1= htsserver.1 httrack.1 proxytrack.1 webhttrack.1