diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2014-05-02 19:51:04 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2014-05-02 19:51:04 +0000 |
commit | a9854d21e111c25ea589de02662035527747a912 (patch) | |
tree | b6293e234a1ac30891f5747727a06a70fa274408 /Mk/bsd.sanity.mk | |
parent | Build 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.mk | 4 |
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*} |