mirror of https://github.com/BOINC/boinc.git
Added check for solaris version of m4.
svn path=/trunk/boinc/; revision=11299
This commit is contained in:
parent
05f6bb28ec
commit
4152d69073
|
@ -85,9 +85,15 @@ check_version()
|
||||||
## FreeBSD's m4 seems to be broken? Download a fresh one
|
## FreeBSD's m4 seems to be broken? Download a fresh one
|
||||||
if check_version m4 1.4; then
|
if check_version m4 1.4; then
|
||||||
echo >/dev/null
|
echo >/dev/null
|
||||||
|
else
|
||||||
|
## solaris m4 works fine
|
||||||
|
if test -f /usr/ccs/bin/m4
|
||||||
|
then
|
||||||
|
echo >/dev/null
|
||||||
else
|
else
|
||||||
echo "Couldn't find a new-enough version of 'm4', please install one!";
|
echo "Couldn't find a new-enough version of 'm4', please install one!";
|
||||||
exit 1;
|
exit 1;
|
||||||
|
fi
|
||||||
# build_lsc_aux "m4-1.4.1"
|
# build_lsc_aux "m4-1.4.1"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue