Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Feb 2020 23:31:15 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r525764 - head/graphics/rawtherapee
Message-ID:  <202002102331.01ANVFqs089518@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 ; }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002102331.01ANVFqs089518>