~ubuntu-branches/ubuntu/natty/ecasound2.2/natty

« back to all changes in this revision

Viewing changes to autogen-vc.sh

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2008-09-26 09:58:52 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080926095852-k3v9ewhmxpaltusw
Tags: 2.5.2-3
yodl 2.13.1 removed --unique-output option. Remove --unique-output
accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# version:20080819-3
 
4
 
 
5
# explicitly select autoconf version to use
 
6
ECA_AM_VERSION=""
 
7
#ECA_AM_VERSION="-1.9"
 
8
 
 
9
# explicitly select autoconf version to use
 
10
ECA_AC_VERSION=""
 
11
#ECA_AC_VERSION="2.50"
 
12
 
 
13
# created variables for tools
 
14
export AUTOMAKE=automake${ECA_AM_VERSION}
 
15
export ACLOCAL=aclocal${ECA_AM_VERSION}
 
16
export AUTOHEADER=autoheader${ECA_AC_VERSION}
 
17
export AUTOCONF=autoconf${ECA_AC_VERSION}
 
18
 
 
19
autoreconf --install --force --verbose
 
20
 
 
21
# test for --reconf
 
22
if test x$1 = "x--reconf"; then
 
23
    ./config.status --recheck && ./config.status
 
24
fi