Added check for solaris version of m4.

svn path=/trunk/boinc/; revision=11299
This commit is contained in:
Eric J. Korpela 2006-10-17 21:51:17 +00:00
parent 05f6bb28ec
commit 4152d69073
1 changed files with 8 additions and 2 deletions

View File

@ -86,8 +86,14 @@ check_version()
if check_version m4 1.4; then if check_version m4 1.4; then
echo >/dev/null echo >/dev/null
else else
echo "Couldn't find a new-enough version of 'm4', please install one!"; ## solaris m4 works fine
exit 1; if test -f /usr/ccs/bin/m4
then
echo >/dev/null
else
echo "Couldn't find a new-enough version of 'm4', please install one!";
exit 1;
fi
# build_lsc_aux "m4-1.4.1" # build_lsc_aux "m4-1.4.1"
fi fi