svn commit: r368003 - head/security/nmap

Olli Hauer ohauer at FreeBSD.org
Fri Sep 12 04:38:33 UTC 2014


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


More information about the svn-ports-head mailing list