check for perl, don't assume Run is executable.

This commit is contained in:
Ben Gras 2010-02-03 14:18:25 +00:00
parent 77ca11d673
commit a008951e02

View File

@ -1,4 +1,8 @@
#!/bin/sh
export CC=cc
export MINIX=1
./Run
if perl -e 'exit 0'
then perl -w Run
else echo "perl not installed. please install perl to run unixbench." >&2
exit 1
fi