1
0
Fork 0

added "make setup"

This commit is contained in:
a-brandt 2012-10-16 15:04:22 +02:00
parent 7fc079d30a
commit b0f69deaf9
1 changed files with 15 additions and 11 deletions

View File

@ -67,22 +67,15 @@ case $TRI_OS_LONG in
;;
Linux-openSUSE-12*)
echo "Using configuration for openSuSE 12"
OPTIONS="$OPTIONS --enable-flex --enable-bison --enable-all-in-one --enable-mruby --disable-all-in-one-icu --enable-icu "
LDD_INFO="yes"
RESULTS="$RESULTS arangoirb"
;;
Linux-openSUSE-11.4*)
echo "Using configuration for openSuSE 11.4"
OPTIONS="$OPTIONS --enable-all-in-one --enable-mruby"
echo "Using configuration for openSuSE 12.X"
OPTIONS="$OPTIONS --enable-flex --enable-bison --enable-mruby "
LDD_INFO="yes"
RESULTS="$RESULTS arangoirb"
;;
Linux-openSUSE-11*)
echo "Using configuration for openSuSE 11"
OPTIONS="$OPTIONS --enable-all-in-one --enable-mruby"
echo "Using configuration for openSuSE 11.X"
OPTIONS="$OPTIONS --enable-mruby"
LDD_INFO="yes"
RESULTS="$RESULTS arangoirb"
;;
@ -135,6 +128,17 @@ case $TRI_OS_LONG in
esac
if [ ! -f configure ] ; then
echo "########################################################"
echo "create configure script:"
echo " make setup"
echo "########################################################"
echo
make setup || exit 1
fi
echo
echo "########################################################"
echo "CPPFLAGS: $CPPFLAGS"