summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 96caa8a)
raw | patch | inline | side by side (parent: 96caa8a)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 4 May 2004 05:25:19 +0000 (05:25 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 4 May 2004 05:25:19 +0000 (05:25 +0000) |
-- Alex van den Bogaerdt <alex@ergens.op.het.net>
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@245 a5681a0c-68f1-0310-ab6d-d61299d08faa
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@245 a5681a0c-68f1-0310-ab6d-d61299d08faa
program/MakeMakefile | patch | blob | history |
diff --git a/program/MakeMakefile b/program/MakeMakefile
index 6e2250a610f5cef459d19a67f3954c402b4fad58..6397703e9f7660dd5194118247cbab2ce22d7b1f 100755 (executable)
--- a/program/MakeMakefile
+++ b/program/MakeMakefile
PERL
}
+ERROR=0
if vcheck 1.5 "libtool --version"
then
echo "get a copy of GNU libtool >= 1.5"
- exit 1
+ ERROR=1
fi
#if vcheck 1.8.2 "automake --version"
if vcheck 1.7.9 "automake-1.7 --version"
then
echo "get a copy of GNU automake >= 1.79"
- exit 1
+ ERROR=1
else
automake=automake-1.7
aclocal="aclocal-1.7 --acdir=/usr/share/aclocal-1.7 -I /usr/share/aclocal/"
if vcheck 2.58 "autoconf --version"
then
- echo "get a copy of GNU autoconf >= 2.54"
+ echo "get a copy of GNU autoconf >= 2.58"
+ ERROR=1
+fi
+
+if [ $ERROR -ne 0 ]
+then
exit 1
fi