From f6efdceacab85343e8fea1059f124497763260db Mon Sep 17 00:00:00 2001
From: meeh <meeh@mail.i2p>
Date: Fri, 10 May 2019 22:22:57 +0000
Subject: [PATCH] Update test/check to support FreeBSD/MacOSX iconv which don't
 support the -o argument. Solution, use pipe instead.

---
 tests/scripts/checkutf8.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/scripts/checkutf8.sh b/tests/scripts/checkutf8.sh
index 3106da17aa..ccec33502c 100755
--- a/tests/scripts/checkutf8.sh
+++ b/tests/scripts/checkutf8.sh
@@ -35,7 +35,7 @@ DIRS="\
 for i in `find $DIRS -maxdepth 1 -type f`
 do
 	#echo "Checking $i ..."
-	iconv -f UTF8 -t UTF8 $i -o /dev/null
+	iconv -f UTF8 -t UTF8 $i > /dev/null
         if [ $? -ne 0 ]
 	then
 		echo "********* FAILED CHECK FOR $i *************"
@@ -47,7 +47,7 @@ echo "Checking all Java and Scala files ..."
 for i in `find . \( -name \*.java -o -name \*.scala \) -type f`
 do
 	#echo "Checking $i ..."
-	iconv -f UTF8 -t UTF8 $i -o /dev/null
+	iconv -f UTF8 -t UTF8 $i > /dev/null
 	if [ $? -ne 0 ]
 	then
 		echo "********* FAILED CHECK FOR $i *************"
@@ -61,7 +61,7 @@ echo "Checking getopt properties files ..."
 for i in `find core/java/src/gnu/getopt -name \*.properties -type f`
 do
 	#echo "Checking $i ..."
-	iconv -f ISO-8859-1 -t ISO-8859-1 $i -o /dev/null
+	iconv -f ISO-8859-1 -t ISO-8859-1 $i > /dev/null
         if [ $? -ne 0 ]
 	then
 		echo "********* FAILED CHECK FOR $i *************"
-- 
GitLab