svn commit: r352843 - head/Mk

Bryan Drewery bdrewery at FreeBSD.org
Fri May 2 19:51:05 UTC 2014


Author: bdrewery
Date: Fri May  2 19:51:04 2014
New Revision: 352843
URL: http://svnweb.freebsd.org/changeset/ports/352843
QAT: https://qat.redports.org/buildarchive/r352843/

Log:
  - 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

Modified:
  head/Mk/bsd.sanity.mk

Modified: head/Mk/bsd.sanity.mk
==============================================================================
--- head/Mk/bsd.sanity.mk	Fri May  2 19:30:49 2014	(r352842)
+++ head/Mk/bsd.sanity.mk	Fri May  2 19:51:04 2014	(r352843)
@@ -108,8 +108,10 @@ DEV_WARNING+=	"USE_PYDISTUTILS=easy_inst
 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*}


More information about the svn-ports-all mailing list