svn commit: r525764 - head/graphics/rawtherapee

Matthias Andree mandree at FreeBSD.org
Mon Feb 10 23:31:16 UTC 2020


Author: mandree
Date: Mon Feb 10 23:31:15 2020
New Revision: 525764
URL: https://svnweb.freebsd.org/changeset/ports/525764

Log:
  rawtherapee: Fix build if testimages dir. missing
  
  Reported by:	ajtiM

Modified:
  head/graphics/rawtherapee/Makefile

Modified: head/graphics/rawtherapee/Makefile
==============================================================================
--- head/graphics/rawtherapee/Makefile	Mon Feb 10 22:39:15 2020	(r525763)
+++ head/graphics/rawtherapee/Makefile	Mon Feb 10 23:31:15 2020	(r525764)
@@ -192,7 +192,7 @@ post-install:
 		  /usr/bin/time ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \
 			-o "$$TMP" -q -s -Y -tz -c ${TESTIMAGES} ; echo $$? >&3 ; \
 		fi ; \
-		ls -Rlbai "${TESTIMAGES}" "$${TMP}"; \
+		ls -Rlbai "${TESTIMAGES}" "$${TMP}" || :; \
 	${PRINTF} "%s" "$$expect" >&4 ) 3>${WRKDIR}/selftest.exitcodes 4>${WRKDIR}/selftest.expect ; \
 	${PRINTF} "$$(cat ${WRKDIR}/selftest.expect)" | cmp - ${WRKDIR}/selftest.exitcodes || { ${ECHO_CMD} '===> !!! SELF-TEST FAILED !!! <===' ; exit 1 ; }
 


More information about the svn-ports-all mailing list