svn commit: r403332 - head/graphics/png

Antoine Brodin antoine at FreeBSD.org
Tue Dec 8 18:23:30 UTC 2015


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>


More information about the svn-ports-all mailing list