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
10
_autosetup
10
_autosetup
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue