From owner-svn-src-all@FreeBSD.ORG Tue Oct 23 12:39:17 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9BD294E; Tue, 23 Oct 2012 12:39:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9225A8FC16; Tue, 23 Oct 2012 12:39:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9NCdHLI063845; Tue, 23 Oct 2012 12:39:17 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9NCdHIM063843; Tue, 23 Oct 2012 12:39:17 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201210231239.q9NCdHIM063843@svn.freebsd.org> From: John Baldwin Date: Tue, 23 Oct 2012 12:39:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r241930 - stable/8/share/mk X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Oct 2012 12:39:17 -0000 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