2 # Copyright (C) 1996-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 # Some grep-based checks on yacc support:
19 # - Make sure intermediate .c file is built from yacc source.
20 # Report from Thomas Morgan.
22 # - Make sure intermediate .h file is not generated nor removed
23 # if (AM_)?YFLAGS do not contain '-d'.
24 # Requested by Jim Meyering.
28 cat >> configure.ac
<< 'END'
33 # Run it here once and for all, since we are not going to modify
34 # configure.ac anymore.
37 cat > Makefile.am
<<'END'
39 zardoz_SOURCES = zardoz.y
42 # Don't redefine several times the same variable.
43 cp Makefile.am Makefile.src
46 $FGREP 'zardoz.c' Makefile.
in
47 # If zardoz.h IS mentioned, fail.
48 $FGREP 'zardoz.h' Makefile.
in && exit 1
50 cp Makefile.src Makefile.am
51 echo 'AM_YFLAGS = -d' >> Makefile.am
53 $FGREP 'zardoz.c' Makefile.
in
54 # If zardoz.h is NOT mentioned, fail.
55 $FGREP 'zardoz.h' Makefile.
in
57 cp Makefile.src Makefile.am
58 echo 'AM_YFLAGS = ' >> Makefile.am
60 $FGREP 'zardoz.c' Makefile.
in
61 # If zardoz.h IS mentioned, fail.
62 $FGREP 'zardoz.h' Makefile.
in && exit 1
64 cp Makefile.src Makefile.am
65 echo 'YFLAGS = -d' >> Makefile.am
66 # YFLAGS is a user variable.
68 grep 'YFLAGS.* user variable' stderr
69 grep 'AM_YFLAGS.* instead' stderr
71 # If zardoz.h is NOT mentioned, fail.
72 $FGREP 'zardoz.h' Makefile.
in
74 cp Makefile.src Makefile.am
75 echo 'YFLAGS = ' >> Makefile.am
77 # If zardoz.h IS mentioned, fail.
78 $FGREP 'zardoz.h' Makefile.
in && exit 1