Browse Source

Clean up another non-portable shell construct in runtest launcher

dejagnu-1.6.3
Jacob Bachmeyer 5 years ago
parent
commit
c35660505e
  1. 5
      ChangeLog
  2. 2
      runtest

5
ChangeLog

@ -6,6 +6,11 @@
message to better fit GNU conventions, with thanks to Tom Tromey
for the reporting this issue.
PR47382
* runtest: Remove use of non-portable "if !" that causes problems
with /bin/sh on Solaris 10.
2021-03-30 Jacob Bachmeyer <jcb@gnu.org>
* configure: Regenerate.

2
runtest

@ -152,7 +152,7 @@ if [ -z "$runpath" ] ; then
exit 1
fi
if ! command -v "$expectbin" > /dev/null ; then
if command -v "$expectbin" > /dev/null ; then :; else
echo "ERROR: unable to find expect in the PATH"
exit 1
fi

Loading…
Cancel
Save