Browse Source

Replace '/bin/sh' with '/bin/bash'

Some of the scripts use extensions that are specific to bash so replace
'/bin/sh' with '/bin/bash' to avoid bashism warnings.
Ilias Tsitsimpis 10 years ago
parent
commit
a7e8214e4d
4 changed files with 4 additions and 4 deletions
  1. 1 1
      tests/Makefile
  2. 1 1
      tests/all_funcs
  3. 1 1
      tests/do_tests.mingw
  4. 1 1
      tests/mexpand

+ 1 - 1
tests/Makefile

@@ -102,7 +102,7 @@ run_tests: $(PROGS)
 	perl $(TESTS)
 
 run_tests_mingw: $(PROGS)
-	/bin/sh do_tests.mingw
+	/bin/bash do_tests.mingw
 
 astyle:
 	astyle -n --style=kr --indent-switches --add-brackets *.c

+ 1 - 1
tests/all_funcs

@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 function proceed {
   read -p "proceed ? [n] " response

+ 1 - 1
tests/do_tests.mingw

@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 echo "MinGW test script starting"
 

+ 1 - 1
tests/mexpand

@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 # utility to macro-expand a test program
 CC=gcc