svn commit: r241930 - stable/8/share/mk

John Baldwin jhb at FreeBSD.org
Tue Oct 23 12:39:17 UTC 2012


Author: jhb
Date: Tue Oct 23 12:39:17 2012
New Revision: 241930
URL: http://svn.freebsd.org/changeset/base/241930

Log:
  Remove attempt to use an empty CTFCONVERT_CMD and always fall back to using
  a the null "@:" command if CTF is disabled.

Modified:
  stable/8/share/mk/bsd.own.mk

Modified: stable/8/share/mk/bsd.own.mk
==============================================================================
--- stable/8/share/mk/bsd.own.mk	Tue Oct 23 12:37:44 2012	(r241929)
+++ stable/8/share/mk/bsd.own.mk	Tue Oct 23 12:39:17 2012	(r241930)
@@ -569,8 +569,6 @@ MK_${vv:H}:=	${MK_${vv:T}}
 
 .if ${MK_CTF} != "no"
 CTFCONVERT_CMD=	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
-.elif ${MAKE_VERSION} >= 5201111300
-CTFCONVERT_CMD=
 .else
 CTFCONVERT_CMD=	@:
 .endif 


More information about the svn-src-all mailing list