diff options
author | marcus <marcus@FreeBSD.org> | 2007-07-09 14:30:17 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2007-07-09 14:30:17 +0800 |
commit | 037fa2258628e04f43cbdcc86c9e869d2d495047 (patch) | |
tree | 0829278b5021a0e48c48d1178c85c5912e8afadc /devel | |
parent | 9a790a6cd551e8fbda7cc8485a5d77c44ca50d07 (diff) | |
download | freebsd-ports-gnome-037fa2258628e04f43cbdcc86c9e869d2d495047.tar.gz freebsd-ports-gnome-037fa2258628e04f43cbdcc86c9e869d2d495047.tar.zst freebsd-ports-gnome-037fa2258628e04f43cbdcc86c9e869d2d495047.zip |
Allow portupgrade to build anjuta. Anjuta uses $PKG_PATH as the path to
pkg-config. Portupgrade is nice enough to set $PKG_PATH to
/usr/ports/packages/All which causes all sorts of fun errors.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/anjuta/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/devel/anjuta/Makefile b/devel/anjuta/Makefile index 5aa1090b22b5..71713c383e43 100644 --- a/devel/anjuta/Makefile +++ b/devel/anjuta/Makefile @@ -73,6 +73,8 @@ post-configure: s|/usr/local|${PREFIX}| ; \ s|share/anjuta|share/gnome/anjuta|' \ ${WRKSRC}/global-tags/create_global_tags.sh + @${REINPLACE_CMD} -e 's|PKG_PATH|PKG_CONFIG_PATH|g' \ + ${WRKSRC}/configure post-install: .if !defined(NOPORTDOCS) |