diff options
author | joerg <joerg@pkgsrc.org> | 2010-02-25 17:59:34 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-02-25 17:59:34 +0000 |
commit | 8bc5f47182e13a94f3c274d741936ca0db648456 (patch) | |
tree | 5e8a3df5a2c45fa23a334d5732f94670e6c49146 /lang | |
parent | ac97e2565f4c95c73cfa973118597536b4508913 (diff) | |
download | pkgsrc-8bc5f47182e13a94f3c274d741936ca0db648456.tar.gz |
Explicitly allow ${WRKSRC} in rpath entries. The package is relinking
itself during the build.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/parrot/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/parrot/Makefile b/lang/parrot/Makefile index ee0295de384..bd46d150f6a 100644 --- a/lang/parrot/Makefile +++ b/lang/parrot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2010/02/23 12:41:14 he Exp $ +# $NetBSD: Makefile,v 1.30 2010/02/25 17:59:34 joerg Exp $ # VERSION= 2.1.1 @@ -62,6 +62,8 @@ REPLACE.parrot.old= .*parrot[^[:space:]]* REPLACE.parrot.new= ${PREFIX}/bin/parrot REPLACE_FILES.parrot+= tools/dev/pbc_to_exe.pir +# Does relink internally, so allow local rpath entries +BUILDLINK_PASSTHRU_RPATHDIRS+= ${WRKSRC} pre-install: ${CHMOD} -R g-w ${WRKSRC} |