From owner-svn-ports-head@FreeBSD.ORG Sat Feb 21 17:50:39 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F7C57BB; Sat, 21 Feb 2015 17:50:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A5CA105; Sat, 21 Feb 2015 17:50:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1LHod2u077184; Sat, 21 Feb 2015 17:50:39 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1LHodrP077182; Sat, 21 Feb 2015 17:50:39 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201502211750.t1LHodrP077182@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sat, 21 Feb 2015 17:50:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379539 - head/misc/libeatmydata X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Feb 2015 17:50:39 -0000 Author: sbruno Date: Sat Feb 21 17:50:38 2015 New Revision: 379539 URL: https://svnweb.freebsd.org/changeset/ports/379539 QAT: https://qat.redports.org/buildarchive/r379539/ Log: Allow the CC expansion to deal with a full path to a compiler. This fixes building with an external toolchain where CC=/nxb-bin/usr/bin/cc when used via poudriere + qemu-bsd-user. PR: 196986 Approved by: maintainer timeout (2 weeks) Modified: head/misc/libeatmydata/Makefile Modified: head/misc/libeatmydata/Makefile ============================================================================== --- head/misc/libeatmydata/Makefile Sat Feb 21 17:36:44 2015 (r379538) +++ head/misc/libeatmydata/Makefile Sat Feb 21 17:50:38 2015 (r379539) @@ -18,7 +18,7 @@ PLIST_FILES= lib/libeatmydata.so \ lib/libeatmydata.so.1.0 post-patch: - ${SED} -i '' -e 's/gcc/${CC}/' ${WRKSRC}/Makefile + ${SED} -i '' -e 's|gcc|${CC}|' ${WRKSRC}/Makefile do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib