speechd-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Simplify build.sh.


From: Christopher Brannon
Subject: [PATCH] Simplify build.sh.
Date: Fri, 24 Sep 2010 06:19:11 -0500

Now, the script simply calls autoreconf -i to do its work.
---
 build.sh |   49 +++----------------------------------------------
 1 files changed, 3 insertions(+), 46 deletions(-)

diff --git a/build.sh b/build.sh
index cc7b5b3..13877a1 100755
--- a/build.sh
+++ b/build.sh
@@ -20,49 +20,6 @@
 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 # Boston, MA 02110-1301, USA.
 #
-# $Id: build.sh,v 1.5 2006-07-11 16:12:25 hanke Exp $
-
-libtoolize=libtoolize
-if [ "`uname`" = Darwin ]; then
-    libtoolize=glibtoolize
-fi
-
-echo "Copying libtool macros (libtoolize)"
-if ! $libtoolize --force; then
-       echo "libtoolize failed!"
-       exit 1
-fi
-
-echo "Building user-defined autoconf macros (aclocal)"
-if ! aclocal; then
-       echo "aclocal failed!"
-       exit 1
-fi
-
-echo "Creating ./configure (autoconf)"
-if ! autoconf; then
-       echo "autoconf failed!"
-       exit 1
-fi
-
-echo "Creating config.h.in (autoheader)"
-if ! autoheader; then
-       echo "autoheader failed!"
-       exit 1
-fi
-
-echo "Checking for missing scripts (automake -a)"
-if ! automake -a; then
-       echo "automake -a failed!"
-       exit 1
-fi
-
-echo "Creating makefiles.in (automake)"
-if ! automake; then
-       echo "automake failed!"
-       exit 1
-fi
-
-echo 
-echo "You can continue configuring and compiling Speech Dispatcher with"
-echo "       ./configure && make all && make install"
+# Just call autoreconf -i.  This script should really go away, but we're
+# keeping it, because people are used to it.
+exec autoreconf -i
-- 
1.7.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]