svn commit: r379604 - head/security/honggfuzz
John Marino
marino at FreeBSD.org
Sun Feb 22 13:54:35 UTC 2015
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
More information about the svn-ports-head
mailing list