diff options
author | mezz <mezz@FreeBSD.org> | 2009-02-02 00:46:09 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2009-02-02 00:46:09 +0800 |
commit | 966670eb2d2e968bdfde82e0cc6b8ef6ee4ee233 (patch) | |
tree | 66da1944cd4368eb21ff3620bb36a55715309ee1 /www/webkit-gtk2 | |
parent | 7d202debadafe1544dc859d4a40cee6629ab9ec2 (diff) | |
download | freebsd-ports-graphics-966670eb2d2e968bdfde82e0cc6b8ef6ee4ee233.tar.gz freebsd-ports-graphics-966670eb2d2e968bdfde82e0cc6b8ef6ee4ee233.tar.zst freebsd-ports-graphics-966670eb2d2e968bdfde82e0cc6b8ef6ee4ee233.zip |
Somehow, if the configure finds bash then it will using bash's doltlibtool
then the result a static library will not be compile and install. It ends mess
up users' plist. Disable to use bash's doltlibtool. Bump the PORTREVISION.
I personal don't understand with bash's doltlibtool issue, so if anyone want
to dig in it deeper then be my guest.
PR: ports/130891
Submitted by: WATANABE Kazuhiro <CQG00620@nifty.ne.jp>
Diffstat (limited to 'www/webkit-gtk2')
-rw-r--r-- | www/webkit-gtk2/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/webkit-gtk2/Makefile b/www/webkit-gtk2/Makefile index 145911fab81..87f772f6bec 100644 --- a/www/webkit-gtk2/Makefile +++ b/www/webkit-gtk2/Makefile @@ -8,7 +8,7 @@ PORTNAME= webkit PORTVERSION= 1.0.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www MASTER_SITES= http://people.freedesktop.org/~alp/webkit/gtk/ PKGNAMESUFFIX= -gtk2 @@ -29,7 +29,8 @@ USE_PERL5= yes USE_LDCONFIG= yes USE_AUTOTOOLS= autoconf:262 automake:110 libtool:15 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" + LDFLAGS="-L${LOCALBASE}/lib" \ + ac_cv_path_DOLT_BASH="" CONFIGURE_ARGS= --with-webkit-target=x11 \ --enable-icon-database \ --enable-svg \ |