Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Feb 2015 13:54:35 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r379604 - head/security/honggfuzz
Message-ID:  <201502221354.t1MDsZem051825@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sun Feb 22 13:54:34 2015
New Revision: 379604
URL: https://svnweb.freebsd.org/changeset/ports/379604
QAT: https://qat.redports.org/buildarchive/r379604/

Log:
  security/honggfuzz: Remove -Werror because it fails -pedantic check
  
  Honggfuzz fails -pedantic checks on gcc-5.  This wouldn't be a problem
  except for the fact -Werror was also set, so Werror is getting removed.
  
  Approved by:	blanket

Modified:
  head/security/honggfuzz/Makefile

Modified: head/security/honggfuzz/Makefile
==============================================================================
--- head/security/honggfuzz/Makefile	Sun Feb 22 13:03:50 2015	(r379603)
+++ head/security/honggfuzz/Makefile	Sun Feb 22 13:54:34 2015	(r379604)
@@ -18,7 +18,8 @@ OPTIONS_DEFINE=	EXAMPLES
 # inplace replacement to remove relative binary path in examples scripts
 post-patch:
 	${REINPLACE_CMD} -i "" -E "s,\.\./,," ${WRKSRC}/examples/*.sh
-	${REINPLACE_CMD} -i "" -E 's,gcc,${CC},' ${WRKSRC}/Makefile
+	${REINPLACE_CMD} -i "" -e 's,gcc,${CC},' \
+		-e 's| -Werror||' ${WRKSRC}/Makefile
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502221354.t1MDsZem051825>