Merge branch 'minor'
[automake.git] / t / distcheck-Tpo.sh
blob867df78095e236baf4443b1a6390060c11b402b9
1 #! /bin/sh
2 # Copyright (C) 2012-2017 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 2, 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 <https://www.gnu.org/licenses/>.
17 # Ensure that the 'make distcheck'-run distcleancheck does not fail
18 # due to a leftover .deps/base.Tpo file when part of a successful build
19 # involves a failed attempt to create a .deps/base.Po file.
21 . test-init.sh
23 cat >> configure.ac <<END
24 AC_PROG_CC
25 AC_OUTPUT
26 END
28 cat > foo.c <<\END
29 #ifndef FAIL
30 int main() { return 0; }
31 #else
32 int x[no_such];
33 #endif
34 END
36 cat > Makefile.am <<\END
37 TESTS = foo bar.test
38 check_PROGRAMS = foo
39 EXTRA_DIST= bar.test foo.c
40 END
42 cat > bar.test <<END
43 #!/bin/sh
44 rm -f foo.o
45 $MAKE AM_CFLAGS=-DFAIL foo.o && exit 1
46 exit 0
47 END
48 chmod a+x bar.test
50 $ACLOCAL
51 $AUTOCONF
52 $AUTOMAKE -a
53 ./configure
55 # We can build the distribution.
56 run_make -M distcheck