diff options
author | antoine <antoine@FreeBSD.org> | 2014-12-19 22:05:24 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-12-19 22:05:24 +0800 |
commit | 512d0d99d40562b1f1517dffbcc2b5a46873067c (patch) | |
tree | 4feba8214f60afe59f9488ab819ebf9baaf9d282 /Mk/Uses | |
parent | 9e688648940184cb29fc6ec45784ec206639b175 (diff) | |
download | freebsd-ports-gnome-512d0d99d40562b1f1517dffbcc2b5a46873067c.tar.gz freebsd-ports-gnome-512d0d99d40562b1f1517dffbcc2b5a46873067c.tar.zst freebsd-ports-gnome-512d0d99d40562b1f1517dffbcc2b5a46873067c.zip |
Fix "USES=autoreconf libtool:keepla" not pulling libtoolize as a build
dependency
This should fix x11-toolkits/open-motif
Submitted by: tijl
With hat: portmgr
Diffstat (limited to 'Mk/Uses')
-rw-r--r-- | Mk/Uses/autoreconf.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Uses/autoreconf.mk b/Mk/Uses/autoreconf.mk index 849197fdeb90..fb4a29f296d1 100644 --- a/Mk/Uses/autoreconf.mk +++ b/Mk/Uses/autoreconf.mk @@ -60,7 +60,7 @@ BUILD_DEPENDS+= autoconf-2.69:${PORTSDIR}/devel/autoconf \ aclocal-1.14:${PORTSDIR}/devel/automake \ automake-1.14:${PORTSDIR}/devel/automake -.if ${USES:Mlibtool} && empty(libtool_ARGS:Mbuild) +.if defined(libtool_ARGS) && empty(libtool_ARGS:Mbuild) BUILD_DEPENDS+= libtoolize:${PORTSDIR}/devel/libtool .endif |