summaryrefslogtreecommitdiff
path: root/Mk/bsd.sanity.mk
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2014-05-02 19:51:04 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2014-05-02 19:51:04 +0000
commita9854d21e111c25ea589de02662035527747a912 (patch)
treeb6293e234a1ac30891f5747727a06a70fa274408 /Mk/bsd.sanity.mk
parentBuild with a dependency on the X composite extension. (diff)
- Fix with fmake:
/usr/ports/Mk/bsd.sanity.mk", line 111: Malformed conditional (defined(USE_AUTOTOOLS) && (${USE_AUTOTOOLS:Mlibtool} || ${USE_AUTOTOOLS:Mlibtool\:env})) With hat: portmgr
Notes
Notes: svn path=/head/; revision=352843
Diffstat (limited to 'Mk/bsd.sanity.mk')
-rw-r--r--Mk/bsd.sanity.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mk/bsd.sanity.mk b/Mk/bsd.sanity.mk
index 339abc88265a..02e0febf474e 100644
--- a/Mk/bsd.sanity.mk
+++ b/Mk/bsd.sanity.mk
@@ -108,8 +108,10 @@ DEV_WARNING+= "USE_PYDISTUTILS=easy_install is deprecated, please use USE_PYDIST
DEV_WARNING+= "PYDISTUTILS_PKGNAME has no effect for USE_PYDISTUTILS=yes and PYDISTUTILS_AUTOPLIST=yes"
.endif
-.if defined(USE_AUTOTOOLS) && (${USE_AUTOTOOLS:Mlibtool} || ${USE_AUTOTOOLS:Mlibtool\:env})
+.if defined(USE_AUTOTOOLS)
+. if ${USE_AUTOTOOLS:Mlibtool} || ${USE_AUTOTOOLS:Mlibtool\:env}
DEV_WARNING+= "USE_AUTOTOOLS=libtool is deprecated, please use USES=libtool"
+. endif
.endif
.if defined(USE_GNOME) && ${USE_GNOME:Mltverhack*}