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)
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 our remake rules doesn't give spurious successes in
18 # some corner case situations where they should actually fail.
19 # See automake bug#10111.
20 # To be clear, we are speaking about *very* corner-case situations here,
21 # and the fact that the remake rules might get confused in them is not a
22 # big deal in practice (in fact, this test *currently fails*). Still,
23 # keeping the limitation exposed is a good idea anyway.
27 cat >> configure.ac
<<'END'
28 m4_include([foobar.m4])
34 cat > Makefile.am
<<'END'
36 echo ': foobar was here :' > $@
45 # OK, so the developer wants to interactively try out how the
46 # "distributed form" of his package behaves.
49 # He's interested in trying out a VPATH build.
53 # He wants to verify that the rules he's written to rebuild a file
54 # included by configure.ac works also in VPATH builds.
57 grep ': foobar was here :' ..
/configure