We have some test scripts that start with #!/bin/bash. This breaks 'make 
check' on systems without bash. Since I could not find any bashism in the 
scripts I think we should apply the attached patch, but I'd like somebody 
else to double check  for bashisms first.


Georg
Index: src/support/tests/test_convert
===================================================================
--- src/support/tests/test_convert	(Revision 14467)
+++ src/support/tests/test_convert	(Arbeitskopie)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 regfile=`cat ${srcdir}/regfiles/convert`
 output=`./convert`
Index: src/support/tests/test_filetools
===================================================================
--- src/support/tests/test_filetools	(Revision 14467)
+++ src/support/tests/test_filetools	(Arbeitskopie)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 regfile=`cat ${srcdir}/regfiles/filetools`
 output=`./filetools`
Index: src/support/tests/test_lstrings
===================================================================
--- src/support/tests/test_lstrings	(Revision 14467)
+++ src/support/tests/test_lstrings	(Arbeitskopie)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 regfile=`cat ${srcdir}/regfiles/lstrings`
 output=`./lstrings`
Index: src/frontends/controllers/tests/test_biblio
===================================================================
--- src/frontends/controllers/tests/test_biblio	(Revision 14467)
+++ src/frontends/controllers/tests/test_biblio	(Arbeitskopie)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 regfile=`cat ${srcdir}/regfiles/biblio`
 output=`./biblio`

Reply via email to