diff options
author | tnn <tnn@pkgsrc.org> | 2008-03-11 17:17:10 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-03-11 17:17:10 +0000 |
commit | 80e989295ba7b223a25f7c352668725a9341c9ba (patch) | |
tree | 1db85164a7bbde7f78ad67a841a1a0a4c6aed8a6 | |
parent | bf39204d2f0a0f269a9864f1ed051876ecfc54bb (diff) | |
download | pkgsrc-80e989295ba7b223a25f7c352668725a9341c9ba.tar.gz |
Add the shared library search path in addition to the run path for -lpcre.
-rw-r--r-- | lang/chicken/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/chicken/Makefile b/lang/chicken/Makefile index a16b3aa3003..856f3451fe3 100644 --- a/lang/chicken/Makefile +++ b/lang/chicken/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2008/03/10 23:41:05 tnn Exp $ +# $NetBSD: Makefile,v 1.31 2008/03/11 17:17:10 tnn Exp $ # DISTNAME= chicken-3.0.0 @@ -50,7 +50,7 @@ MAKE_FLAGS+= USE_HOST_PCRE=yes SUBST_CLASSES+= add-rpath SUBST_STAGE.add-rpath= pre-configure SUBST_FILES.add-rpath= defaults.make -SUBST_SED.add-rpath= -e 's|-lpcre|${COMPILER_RPATH_FLAG}${PREFIX}/lib -lpcre|' +SUBST_SED.add-rpath= -e 's|-lpcre|${COMPILER_RPATH_FLAG}${PREFIX}/lib -L${PREFIX}/lib -lpcre|' TEST_TARGET= check |