1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

- 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
This commit is contained in:
Bryan Drewery 2014-05-02 19:51:04 +00:00
parent c71e2d814f
commit a9854d21e1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=352843

View File

@ -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*}