2 # Copyright (C) 1998-2013 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 # Test to see if 'm4_sinclude' and 'm4_include' works.
21 cat >> configure.ac <<'EOF'
22 sinclude([doesntexist.m4])
27 cat > sub/p.m4 << 'END'
28 AC_SUBST([MAGICALPIG])
31 cat > sub/h.m4 << 'END'
32 AC_SUBST([MAGICALHOG])
35 cat > sub/g.m4 << 'END'
41 echo 'sinclude([sub/g.m4])' >> acinclude.m4
42 echo 'm4_sinclude([sub/doesntexist.m4])' >> acinclude.m4
46 echo 'm4_sinclude([sub/p.m4])' >> aclocal.m4
47 echo 'm4_include([sub/h.m4])' >> aclocal.m4
51 grep doesntexist Makefile.in && exit 1
52 grep MAGICALPIG Makefile.in
53 grep MAGICALHOG Makefile.in
54 grep GREPME Makefile.in