Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 May 2014 19:51:04 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r352843 - head/Mk
Message-ID:  <201405021951.s42Jp4uZ023237@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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*}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405021951.s42Jp4uZ023237>