diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2014-05-03 03:51:04 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2014-05-03 03:51:04 +0800 |
commit | cec29b17cd0ee7abaafba793f2a40ac374955678 (patch) | |
tree | b6293e234a1ac30891f5747727a06a70fa274408 /Mk/bsd.sanity.mk | |
parent | 171022c9fde6f7920f979182fb7aa24f13e2df98 (diff) | |
download | freebsd-ports-gnome-cec29b17cd0ee7abaafba793f2a40ac374955678.tar.gz freebsd-ports-gnome-cec29b17cd0ee7abaafba793f2a40ac374955678.tar.zst freebsd-ports-gnome-cec29b17cd0ee7abaafba793f2a40ac374955678.zip |
- 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
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*} |