From: Jim Meyering Date: Thu, 18 Feb 2010 09:28:24 +0000 (+0100) Subject: init.sh: don't use $(...) just yet X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ce0394a2834b9edb76e2f70af71ab8a5738e68c;p=pspp init.sh: don't use $(...) just yet * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...), to accommodate e.g., Solaris' /bin/sh. --- diff --git a/ChangeLog b/ChangeLog index a0f0b94f33..d73841a0f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-02-18 Jim Meyering + + init.sh: don't use $(...) just yet + * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...), + to accommodate e.g., Solaris' /bin/sh. + 2010-02-17 Bruno Haible * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem. diff --git a/tests/init.sh b/tests/init.sh index 02f53c8ee1..e7664b82c8 100644 --- a/tests/init.sh +++ b/tests/init.sh @@ -129,7 +129,7 @@ create_exe_shim_functions_() *) echo "$0: unexpected \$EXEEXT value: $EXEEXT" 1>&2; return 1 ;; esac - base_names_=$(find_exe_basenames_ $1) \ + base_names_=`find_exe_basenames_ $1` \ || { echo "$0 (exe_shim): skipping directory: $1" 1>&2; return 1; } if test -n "$base_names_"; then