Do not fail if `autoupdate' is not present.
[automake/plouj.git] / tests / missing.test
blob274226cbfefa146b770d32a0d7445a06eb09c756
1 #! /bin/sh
2 # Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Test missing with version mismatches.
19 . ./defs || exit 1
21 set -e
23 cat >>configure.in <<'EOF'
24 AC_OUTPUT
25 EOF
27 : > Makefile.am
29 $ACLOCAL
30 $AUTOCONF
31 $AUTOMAKE --add-missing
33 # Make sure we do use missing, even if the user exported AUTOCONF.
34 # (We cannot export this new value, because it would be used by Automake
35 # when tracing, and missing is no good for this.)
36 MYAUTOCONF="./missing --run $AUTOCONF"
37 unset AUTOCONF
39 ./configure AUTOCONF="$MYAUTOCONF"
40 $MAKE
41 $sleep
42 # Hopefully the install version of Autoconf cannot compete with this one...
43 echo 'AC_PREREQ(9999)' >> aclocal.m4
44 $MAKE distdir
46 # Run again, but without missing, to ensure that timestamps were updated.
47 export AUTOMAKE ACLOCAL
48 ./configure AUTOCONF="$MYAUTOCONF"
49 $MAKE
51 # Make sure $MAKE fails when timestamps aren't updated and missing is not used.
52 $sleep
53 touch aclocal.m4
54 $MAKE && exit 1