test harness: improve catching of usage errors in script 'test-driver'
[platform/upstream/automake.git] / bootstrap.sh
1 #! /bin/sh
2
3 # This script helps bootstrap automake, when checked out from git.
4 #
5 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
6 # Originally written by Pavel Roskin <proski@gnu.org> September 2002.
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
11 # any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 # Don't ignore failures.
22 set -e
23
24 # Set program basename.
25 me=`echo "$0" | sed 's,^.*/,,'`
26
27 # Let user choose which version of autoconf, autom4te and perl to use.
28 : ${AUTOCONF=autoconf}
29 export AUTOCONF  # might be used by aclocal and/or automake
30 : ${AUTOM4TE=autom4te}
31 export AUTOM4TE  # ditto
32 : ${PERL=perl}
33
34 # Variables to substitute.
35 VERSION=`sed -ne '/AC_INIT/s/^[^[]*\[[^[]*\[\([^]]*\)\].*$/\1/p' configure.ac`
36 PACKAGE=automake
37 datadir=.
38 # This should be automatically updated by the 'update-copyright'
39 # rule of our Makefile.
40 RELEASE_YEAR=2013
41
42 # Override SHELL.  This is required on DJGPP so that Perl's system()
43 # uses bash, not COMMAND.COM which doesn't quote arguments properly.
44 # It's not used otherwise.
45 if test -n "$DJDIR"; then
46   BOOTSTRAP_SHELL=/dev/env/DJDIR/bin/bash.exe
47 else
48   BOOTSTRAP_SHELL=/bin/sh
49 fi
50
51 # Read the rule for calculating APIVERSION and execute it.
52 apiver_cmd=`sed -ne 's/\[\[/[/g;s/\]\]/]/g;/^APIVERSION=/p' configure.ac`
53 eval "$apiver_cmd"
54
55 # Sanity checks.
56 if test -z "$VERSION"; then
57   echo "$me: cannot find VERSION" >&2
58   exit 1
59 fi
60
61 if test -z "$APIVERSION"; then
62   echo "$me: cannot find APIVERSION" >&2
63   exit 1
64 fi
65
66 # Make a dummy versioned directory for aclocal.
67 rm -rf aclocal-$APIVERSION
68 mkdir aclocal-$APIVERSION
69 if test -d automake-$APIVERSION; then
70   find automake-$APIVERSION -exec chmod u+wx '{}' ';'
71 fi
72 rm -rf automake-$APIVERSION
73 # Can't use "ln -s lib automake-$APIVERSION", that would create a
74 # lib.exe stub under DJGPP 2.03.
75 mkdir automake-$APIVERSION
76 cp -rf lib/* automake-$APIVERSION
77
78 dosubst ()
79 {
80   rm -f $2
81   in=`echo $1 | sed 's,^.*/,,'`
82   sed -e "s%@APIVERSION@%$APIVERSION%g" \
83       -e "s%@PACKAGE@%$PACKAGE%g" \
84       -e "s%@PERL@%$PERL%g" \
85       -e "s%@SHELL@%$BOOTSTRAP_SHELL%g" \
86       -e "s%@VERSION@%$VERSION%g" \
87       -e "s%@datadir@%$datadir%g" \
88       -e "s%@RELEASE_YEAR@%$RELEASE_YEAR%g" \
89       -e "s%@configure_input@%Generated from $in; do not edit by hand.%g" \
90       $1 > $2
91   chmod a-w $2
92 }
93
94 # Create temporary replacement for lib/Automake/Config.pm.
95 dosubst automake-$APIVERSION/Automake/Config.in \
96         automake-$APIVERSION/Automake/Config.pm
97
98 # Overwrite amversion.m4.
99 dosubst m4/amversion.in m4/amversion.m4
100
101 # Create temporary replacement for aclocal and automake.
102 for p in bin/aclocal bin/automake; do
103   dosubst $p.in $p.tmp
104   $PERL -w bin/gen-perl-protos $p.tmp > $p.tmp2
105   mv -f $p.tmp2 $p.tmp
106 done
107
108 # Create required makefile snippets.
109 $PERL ./gen-testsuite-part > t/testsuite-part.tmp
110 chmod a-w t/testsuite-part.tmp
111 mv -f t/testsuite-part.tmp t/testsuite-part.am
112
113 # Run the autotools.  Bail out if any warning is triggered.
114 # Use '-I' here so that our own *.m4 files in m4/ gets included,
115 # not copied, in aclocal.m4.
116 $PERL ./bin/aclocal.tmp -Wall -Werror -I m4 \
117                         --automake-acdir=m4 --system-acdir=m4/acdir
118 $AUTOCONF -Wall -Werror
119 $PERL ./bin/automake.tmp -Wall -Werror
120
121 # Remove temporary files and directories.
122 rm -rf aclocal-$APIVERSION automake-$APIVERSION
123 rm -f bin/aclocal.tmp bin/automake.tmp