speechd-discuss
[Top][All Lists]
Advanced

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

[PATCH 1/1] remove build.sh


From: William Hubbs
Subject: [PATCH 1/1] remove build.sh
Date: Wed, 22 Sep 2010 16:12:00 -0500

This script is not needed; 'autoreconf -i' will perform the same
function.  This removes the script and updates the installation
instructions.
---
 INSTALL     |   18 +--------------
 Makefile.am |    2 -
 build.sh    |   68 -----------------------------------------------------------
 3 files changed, 1 insertions(+), 87 deletions(-)
 delete mode 100755 build.sh

diff --git a/INSTALL b/INSTALL
index 5a7d174..d4758e6 100644
--- a/INSTALL
+++ b/INSTALL
@@ -153,7 +153,7 @@ sensitive.
 Then please do:
 
  $ cd speech-dispatcher # where speech-dispatcher is your Git clone
- $ ./build.sh
+ $ autoreconf -i
 
 Now the configure file should be created and you can proceed like with
 an ordinary instalation.
@@ -223,19 +223,3 @@ These are:
     - clean ...... remove all files except the sources (does not
                    clean documentation)
     - all ........ build server, modules and clients
-
-If you are building directly from CVS or from some CVS tarball snapshot, you
-must first create the ./configure file. Please make sure you have all the
-necessary tools listed in the requirements at the beginning of this README
-in their appropriate versions. Automake and autoconf are especially version
-sensitive.
-
-Then please do:
-
- $ cd speech-dispatcher-0.7
- $ ./build.sh
-
-Now the configure file should be created and you can proceed like with
-an ordinary instalation.
-
-
diff --git a/Makefile.am b/Makefile.am
index d4d8378..b11de2c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -5,6 +5,4 @@ pkgconfig_DATA = speech-dispatcher.pc
 
 SUBDIRS= include src config doc po
 
-EXTRA_DIST=  build.sh
-
 MAINTAINERCLEANFILES=configure
diff --git a/build.sh b/build.sh
deleted file mode 100755
index cc7b5b3..0000000
--- a/build.sh
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/bin/bash
-
-# build.sh - Run all the auto-tools
-#
-# Copyright (C) 2001,2002,2003 Brailcom, o.p.s, Prague 2,
-# Vysehradska 3/255, 128 00, <freesoft at freesoft.cz>
-#
-# This is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-#
-# This software is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this package; see the file COPYING.  If not, write to
-# 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"
-- 
1.7.2.2




reply via email to

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