Date: Tue, 8 Dec 2015 18:23:29 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403332 - head/graphics/png Message-ID: <201512081823.tB8INTh2002529@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Tue Dec 8 18:23:29 2015 New Revision: 403332 URL: https://svnweb.freebsd.org/changeset/ports/403332 Log: Do not fail the build if regression tests do not pass, there seems to be a regression on big endian archs between versions 1.6.19 and 1.6.20 (reported upstream) PR: 205125 MFH: 2015Q4 Modified: head/graphics/png/Makefile Modified: head/graphics/png/Makefile ============================================================================== --- head/graphics/png/Makefile Tue Dec 8 18:21:10 2015 (r403331) +++ head/graphics/png/Makefile Tue Dec 8 18:23:29 2015 (r403332) @@ -30,15 +30,14 @@ PNGTEST_DESC=Enable Regression Test (rec PATCHFILES= ${DISTNAME}-apng.patch.gz .endif +# Do not fail until https://sourceforge.net/p/libpng/bugs/243/ is fixed .if ${PORT_OPTIONS:MPNGTEST} post-build: (cd ${BUILD_WRKSRC}; if ! ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS} test; then \ - if [ x != x${BUILD_FAIL_MESSAGE} ] ; then \ - ${ECHO_MSG} "===> Compilation failed unexpectedly."; \ - (${ECHO_CMD} ${BUILD_FAIL_MESSAGE}) | ${FMT} 75 79 ; \ - fi; \ - ${FALSE}; \ - fi) + if [ -f ${WRKSRC}/test-suite.log ]; then \ + ${CAT} ${WRKSRC}/test-suite.log ; \ + fi; \ + fi) .endif .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512081823.tB8INTh2002529>