From owner-svn-ports-all@FreeBSD.ORG Fri Sep 12 04:38:33 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 889B43A0; Fri, 12 Sep 2014 04:38:33 +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 732D73F6; Fri, 12 Sep 2014 04:38:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8C4cXUP069988; Fri, 12 Sep 2014 04:38:33 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8C4cXwO069987; Fri, 12 Sep 2014 04:38:33 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201409120438.s8C4cXwO069987@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Fri, 12 Sep 2014 04:38:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368003 - head/security/nmap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 04:38:33 -0000 Author: ohauer Date: Fri Sep 12 04:38:32 2014 New Revision: 368003 URL: http://svnweb.freebsd.org/changeset/ports/368003 QAT: https://qat.redports.org/buildarchive/r368003/ Log: - fix build with ccache on FreeBSD 10 PR: 193478 Submitted by: dewayne @ heuristicsystems.com.au Modified: head/security/nmap/Makefile Modified: head/security/nmap/Makefile ============================================================================== --- head/security/nmap/Makefile Fri Sep 12 04:33:05 2014 (r368002) +++ head/security/nmap/Makefile Fri Sep 12 04:38:32 2014 (r368003) @@ -55,7 +55,7 @@ CONFIGURE_ARGS+=--without-localdirs \ --without-nmap-update # fix for gcc from ports -.if ${CC} != "cc" && ${CC} !="clang" +.if ${CC} != "cc" && ${CC} !="clang" && !${CC:M*ccache/cc} GCCLIBDIR_CMDS= ${CC} -print-file-name=libstdc++.so | ${SED} -e 's/libstdc++.so//' CONFIGURE_ARGS+=LDFLAGS="-L$$(${GCCLIBDIR_CMDS})" NOT_BASE_CC= true