ports/graphics/nip2/files/patch-tests
Mikhail Teterin 5c7cc12137 Upgrade vips and nip2 to 7.40.3 and 7.40.2 respectively. Unbreak
packaging for the case, when the install of documentation is enabled.

Transfer maintainership to antoine@, so he can continue to do as he
pleases with both, but without the guilt of changing other people's
ports.
2014-07-05 15:41:01 +00:00

28 lines
781 B
Text

--- test/scripts/test_seq.sh 2014-06-23 15:17:21.000000000 -0400
+++ test/scripts/test_seq.sh 2014-07-01 12:38:53.000000000 -0400
@@ -1,3 +1,3 @@
-#!/bin/bash
+#!/bin/sh
# set -x
@@ -18,5 +18,5 @@
rm -f $tmp/x.png
vipsthumbnail $huge -o $tmp/x.png
-if ! vipsheader $tmp/x.png &> /dev/null ; then
+if ! vipsheader $tmp/x.png ; then
echo "vipsthumbnail failed in basic mode"
exit 1
@@ -33,5 +33,5 @@
rm -f $tmp/x.png
vipsthumbnail $huge -o $tmp/x.png
-if ! vipsheader $tmp/x.png &> /dev/null ; then
+if ! vipsheader $tmp/x.png ; then
echo "vipsthumbnail made a temp"
exit 1
@@ -42,5 +42,5 @@
rm -f $tmp/x.png
vips shrink $huge $tmp/x.png 230 230
-if ! vipsheader $tmp/x.png &> /dev/null; then
+if ! vipsheader $tmp/x.png ; then
echo "shrink made a temp"
exit 1