summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2020-02-10 23:31:15 +0000
committerMatthias Andree <mandree@FreeBSD.org>2020-02-10 23:31:15 +0000
commit878485310d480bc648b7041777e8aa7210127a76 (patch)
tree3a112ffff1fa62c7a107bfc2bcfd36212b1a0ef6
parentsysutils/py-azure-cli: Update to 2.0.81 (diff)
rawtherapee: Fix build if testimages dir. missing
Reported by: ajtiM
Notes
Notes: svn path=/head/; revision=525764
-rw-r--r--graphics/rawtherapee/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/rawtherapee/Makefile b/graphics/rawtherapee/Makefile
index f7ff03784029..baadb6473e39 100644
--- a/graphics/rawtherapee/Makefile
+++ b/graphics/rawtherapee/Makefile
@@ -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 ; }