Merge branch 'python-fix-pr10227' into maint
[automake.git] / t / remake-renamed-am.sh
blob378aa2660f809be164e142c351ef3c800acfc56e
1 #! /bin/sh
2 # Copyright (C) 2011-2012 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 <http://www.gnu.org/licenses/>.
17 # Check that inclusion of '.am' fragments by automake does not suffer
18 # of the "deleted header problem". This test checks that we can rename
19 # an included .am file without confusing the remake rules.
21 . ./defs || exit 1
23 echo AC_OUTPUT >> configure.ac
25 cat > Makefile.am <<'END'
26 include foo.am
27 END
29 cat > foo.am <<'END'
30 all-local:
31 echo ok > has-run-1
32 END
34 $ACLOCAL
35 $AUTOMAKE
36 $AUTOCONF
38 ./configure
39 $MAKE
40 test -f has-run-1
42 $sleep
43 rm -f has-run-1
44 mv -f foo.am bar.am
45 echo include bar.am > Makefile.am
46 $MAKE Makefile
47 $FGREP 'foo.am' Makefile Makefile.in && exit 1
49 $sleep
50 rm -f has-run-1 bar.am
51 echo 'all-local:; echo ok > has-run-2' > zardoz.am
52 echo 'include $(srcdir)/zardoz.am' > Makefile.am
53 using_gmake || $MAKE Makefile
54 $MAKE
55 test ! -e has-run-1
56 test -f has-run-2