Silenced autogen.sh
authorSven Panne <sven.panne@aedion.de>
Sun, 4 Sep 2005 15:24:57 +0000 (15:24 +0000)
committerSven Panne <sven.panne@aedion.de>
Sun, 4 Sep 2005 15:24:57 +0000 (15:24 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@685 7f0cb862-5218-0410-a997-914c9d46530a

ChangeLog
autogen.sh

index a3ba2f5..97fbca8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1136,3 +1136,9 @@ necessary to temporarily use the X11 flags found by AC_PATH_XTRA.
 **************************************************************************
 
 (296) Added support for Open Watcom
+
+**************************************************************************
+* Changes on September 4, 2005.
+**************************************************************************
+
+(297) Silenced autogen.sh. *nix commands are silent by default.
\ No newline at end of file
index d0d1d98..59d76ae 100755 (executable)
@@ -1,12 +1,7 @@
-#!/bin/sh
-#
-echo "Generating build information using aclocal, automake and autoconf"
-echo "This may take a while ..."
-
+#! /bin/sh
+set -e
 aclocal
 autoheader
-libtoolize  --copy  --force
-automake  --add-missing
+libtoolize --copy --force
+automake --add-missing
 autoconf
-
-echo "Now you are ready to run ./configure"