mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-12 09:36:33 +01:00
explicitly check for autocrap tools from the autogen.sh scripts
git-svn-id: svn://localhost/ardour2/trunk@1491 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
8a5713f57f
commit
777616a24d
2 changed files with 43 additions and 0 deletions
|
|
@ -1,5 +1,27 @@
|
|||
#! /bin/sh
|
||||
|
||||
# check all tools first
|
||||
|
||||
if /usr/bin/which libtoolize >/dev/null 2>&1 ; then
|
||||
:
|
||||
else
|
||||
echo "You do not have libtool installed, which is very sadly required to build part of Ardour"
|
||||
exit 1
|
||||
fi
|
||||
if /usr/bin/which automake >/dev/null 2>&1 ; then
|
||||
:
|
||||
else
|
||||
echo "You do not have automake installed, which is very sadly required to build part of Ardour"
|
||||
exit 1
|
||||
fi
|
||||
if /usr/bin/which autoconf >/dev/null 2>&1 ; then
|
||||
:
|
||||
else
|
||||
echo "You do not have autoconf installed, which is very sadly required to build part of Ardour"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
srcdir=`dirname $0`
|
||||
test -z "$srcdir" && srcdir=.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,26 @@
|
|||
#! /bin/sh
|
||||
|
||||
# check all tools first
|
||||
|
||||
if /usr/bin/which libtoolize >/dev/null 2>&1 ; then
|
||||
:
|
||||
else
|
||||
echo "You do not have libtool installed, which is very sadly required to build part of Ardour"
|
||||
exit 1
|
||||
fi
|
||||
if /usr/bin/which automake >/dev/null 2>&1 ; then
|
||||
:
|
||||
else
|
||||
echo "You do not have automake installed, which is very sadly required to build part of Ardour"
|
||||
exit 1
|
||||
fi
|
||||
if /usr/bin/which autoconf >/dev/null 2>&1 ; then
|
||||
:
|
||||
else
|
||||
echo "You do not have autoconf installed, which is very sadly required to build part of Ardour"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
srcdir=`dirname $0`
|
||||
test -z "$srcdir" && srcdir=.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue