Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / missing.test
blob911a5529aa4f7bfc13f860df8a3f329ef0ef1cd3
1 #! /bin/sh
2 # Copyright (C) 2003, 2004, 2006, 2007, 2008 Free Software Foundation,
3 # Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Test missing with version mismatches.
20 . ./defs || Exit 1
22 set -e
24 cat >>configure.in <<'EOF'
25 AC_OUTPUT
26 EOF
28 : > Makefile.am
30 $ACLOCAL
31 $AUTOCONF
32 $AUTOMAKE --add-missing
34 # Make sure we do use missing, even if the user exported AUTOCONF.
35 # (We cannot export this new value, because it would be used by Automake
36 # when tracing, and missing is no good for this.)
37 MYAUTOCONF="./missing --run $AUTOCONF"
38 unset AUTOCONF
40 ./configure AUTOCONF="$MYAUTOCONF"
41 $MAKE
42 $sleep
43 # Hopefully the install version of Autoconf cannot compete with this one...
44 echo 'AC_PREREQ(9999)' >> aclocal.m4
45 $MAKE distdir
47 # Try version number suffixes if we can add them safely.
48 case $MYAUTOCONF in *autoconf)
49 ./configure AUTOCONF="${MYAUTOCONF}6789"
50 $MAKE
51 $sleep
52 # Hopefully the install version of Autoconf cannot compete with this one...
53 echo 'AC_PREREQ(9999)' >> aclocal.m4
54 $MAKE distdir
55 esac
57 # Run again, but without missing, to ensure that timestamps were updated.
58 export AUTOMAKE ACLOCAL
59 ./configure AUTOCONF="$MYAUTOCONF"
60 $MAKE
62 # Make sure $MAKE fails when timestamps aren't updated and missing is not used.
63 $sleep
64 touch aclocal.m4
65 $MAKE && Exit 1