summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMatthew Allum <mallum@openedhand.com>2008-04-28 13:18:16 +0000
committerMatthew Allum <mallum@openedhand.com>2008-04-28 13:18:16 +0000
commit2b80688cfecfe7ef75031a4b5f8464c5ad086de3 (patch)
tree247212c222e639df734fe1d579876610c274483d /autogen.sh
parented9f2bc16f848c6cced03ca66d8a064edeee530c (diff)
downloadclutter-2b80688cfecfe7ef75031a4b5f8464c5ad086de3.tar.gz
2008-04-28 Matthew Allum <mallum@openedhand.com>
* autogen.sh: Dont display 'make' if configure fails. * configure.ac: Add new --with-gles version option for eventual GLES2 support Also minor tidyups.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index 386762d71..468d64096 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -23,6 +23,4 @@ fi
# back in the stupidity of autoreconf
autoreconf -v --install || exit $?
-./configure "$@"
-
-echo "Now type 'make' to compile $PROJECT."
+./configure "$@" && echo "Now type 'make' to compile $PROJECT."