mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-12 13:53:03 +00:00
* src/files.c (compute_output_file_names): s/would be both named/
/would both be named/. Reported by Jim Meyering. * tests/output.at (Clashing Output Files): Adjust.
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2002-03-12 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* src/files.c (compute_output_file_names): s/would be both named/
|
||||||
|
/would both be named/.
|
||||||
|
Reported by Jim Meyering.
|
||||||
|
* tests/output.at (Clashing Output Files): Adjust.
|
||||||
|
|
||||||
2002-03-12 Akim Demaille <akim@epita.fr>
|
2002-03-12 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
Version 1.34.
|
Version 1.34.
|
||||||
|
|||||||
@@ -140,8 +140,8 @@ RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
|
|||||||
install-exec-recursive installdirs-recursive install-recursive \
|
install-exec-recursive installdirs-recursive install-recursive \
|
||||||
uninstall-recursive check-recursive installcheck-recursive
|
uninstall-recursive check-recursive installcheck-recursive
|
||||||
DIST_COMMON = README ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL \
|
DIST_COMMON = README ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL \
|
||||||
Makefile.am Makefile.in NEWS THANKS aclocal.m4 config.hin \
|
Makefile.am Makefile.in NEWS README-alpha THANKS aclocal.m4 \
|
||||||
configure configure.in
|
config.hin configure configure.in
|
||||||
DIST_SUBDIRS = $(SUBDIRS)
|
DIST_SUBDIRS = $(SUBDIRS)
|
||||||
all: config.h
|
all: config.h
|
||||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||||
|
|||||||
8
NEWS
8
NEWS
@@ -1,15 +1,17 @@
|
|||||||
Bison News
|
Bison News
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
Changes in version 1.34a:
|
||||||
|
|
||||||
Changes in version 1.34, 2002-03-12:
|
Changes in version 1.34, 2002-03-12:
|
||||||
|
|
||||||
* File name clashes are detected
|
* File name clashes are detected
|
||||||
$ bison foo.y -d -o foo.x
|
$ bison foo.y -d -o foo.x
|
||||||
fatal error: header and parser would be both named `foo.x'
|
fatal error: header and parser would both be named `foo.x'
|
||||||
|
|
||||||
* A missing `;' ending a rule triggers a warning
|
* A missing `;' at the end of a rule triggers a warning
|
||||||
In accordance with POSIX, and in agreement with other
|
In accordance with POSIX, and in agreement with other
|
||||||
Yacc implementations, Bison will mandate this semicolon in a near
|
Yacc implementations, Bison will mandate this semicolon in the near
|
||||||
future. This eases the implementation of a Bison parser of Bison
|
future. This eases the implementation of a Bison parser of Bison
|
||||||
grammars by making this grammar LALR(1) instead of LR(2). To
|
grammars by making this grammar LALR(1) instead of LR(2). To
|
||||||
facilitate the transition, this release introduces a warning.
|
facilitate the transition, this release introduces a warning.
|
||||||
|
|||||||
103
configure
vendored
103
configure
vendored
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.52i for GNU Bison 1.34.
|
# Generated by GNU Autoconf 2.53a for GNU Bison 1.34a.
|
||||||
#
|
#
|
||||||
# Report bugs to <bug-bison@gnu.org>.
|
# Report bugs to <bug-bison@gnu.org>.
|
||||||
#
|
#
|
||||||
@@ -8,7 +8,6 @@
|
|||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
# This configure script is free software; the Free Software Foundation
|
# This configure script is free software; the Free Software Foundation
|
||||||
# gives unlimited permission to copy, distribute and modify it.
|
# gives unlimited permission to copy, distribute and modify it.
|
||||||
|
|
||||||
if expr a : '\(a\)' >/dev/null 2>&1; then
|
if expr a : '\(a\)' >/dev/null 2>&1; then
|
||||||
as_expr=expr
|
as_expr=expr
|
||||||
else
|
else
|
||||||
@@ -16,6 +15,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## --------------------- ##
|
## --------------------- ##
|
||||||
## M4sh Initialization. ##
|
## M4sh Initialization. ##
|
||||||
## --------------------- ##
|
## --------------------- ##
|
||||||
@@ -256,8 +256,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='GNU Bison'
|
PACKAGE_NAME='GNU Bison'
|
||||||
PACKAGE_TARNAME='bison'
|
PACKAGE_TARNAME='bison'
|
||||||
PACKAGE_VERSION='1.34'
|
PACKAGE_VERSION='1.34a'
|
||||||
PACKAGE_STRING='GNU Bison 1.34'
|
PACKAGE_STRING='GNU Bison 1.34a'
|
||||||
PACKAGE_BUGREPORT='bug-bison@gnu.org'
|
PACKAGE_BUGREPORT='bug-bison@gnu.org'
|
||||||
|
|
||||||
# Factoring default headers for most tests.
|
# Factoring default headers for most tests.
|
||||||
@@ -647,7 +647,7 @@ do
|
|||||||
eval ac_val=$`echo $ac_var`
|
eval ac_val=$`echo $ac_var`
|
||||||
case $ac_val in
|
case $ac_val in
|
||||||
[\\/$]* | ?:[\\/]* | NONE | '' ) ;;
|
[\\/$]* | ?:[\\/]* | NONE | '' ) ;;
|
||||||
*) { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2
|
*) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
|
||||||
{ (exit 1); exit 1; }; };;
|
{ (exit 1); exit 1; }; };;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
@@ -659,18 +659,19 @@ do
|
|||||||
eval ac_val=$`echo $ac_var`
|
eval ac_val=$`echo $ac_var`
|
||||||
case $ac_val in
|
case $ac_val in
|
||||||
[\\/$]* | ?:[\\/]* ) ;;
|
[\\/$]* | ?:[\\/]* ) ;;
|
||||||
*) { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2
|
*) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
|
||||||
{ (exit 1); exit 1; }; };;
|
{ (exit 1); exit 1; }; };;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# There might be people who depend on the old broken behavior: `$host'
|
# There might be people who depend on the old broken behavior: `$host'
|
||||||
# used to hold the argument of --host etc.
|
# used to hold the argument of --host etc.
|
||||||
|
# FIXME: To remove some day.
|
||||||
build=$build_alias
|
build=$build_alias
|
||||||
host=$host_alias
|
host=$host_alias
|
||||||
target=$target_alias
|
target=$target_alias
|
||||||
|
|
||||||
# FIXME: should be removed in autoconf 3.0.
|
# FIXME: To remove some day.
|
||||||
if test "x$host_alias" != x; then
|
if test "x$host_alias" != x; then
|
||||||
if test "x$build_alias" = x; then
|
if test "x$build_alias" = x; then
|
||||||
cross_compiling=maybe
|
cross_compiling=maybe
|
||||||
@@ -760,7 +761,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# Omit some internal or obsolete options to make the list less imposing.
|
||||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures GNU Bison 1.34 to adapt to many kinds of systems.
|
\`configure' configures GNU Bison 1.34a to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -820,13 +821,13 @@ Program names:
|
|||||||
|
|
||||||
System types:
|
System types:
|
||||||
--build=BUILD configure for building on BUILD [guessed]
|
--build=BUILD configure for building on BUILD [guessed]
|
||||||
--host=HOST build programs to run on HOST [BUILD]
|
--host=HOST cross-compile to build programs to run on HOST [BUILD]
|
||||||
_ACEOF
|
_ACEOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of GNU Bison 1.34:";;
|
short | recursive ) echo "Configuration of GNU Bison 1.34a:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -921,8 +922,8 @@ fi
|
|||||||
test -n "$ac_init_help" && exit 0
|
test -n "$ac_init_help" && exit 0
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
GNU Bison configure 1.34
|
GNU Bison configure 1.34a
|
||||||
generated by GNU Autoconf 2.52i
|
generated by GNU Autoconf 2.53a
|
||||||
|
|
||||||
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
@@ -936,8 +937,8 @@ cat >&5 <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by GNU Bison $as_me 1.34, which was
|
It was created by GNU Bison $as_me 1.34a, which was
|
||||||
generated by GNU Autoconf 2.52i. Invocation command line was
|
generated by GNU Autoconf 2.53a. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
|
|
||||||
@@ -1253,8 +1254,8 @@ am__api_version="1.5c"
|
|||||||
# AFS /usr/afsws/bin/install, which mishandles nonexistent args
|
# AFS /usr/afsws/bin/install, which mishandles nonexistent args
|
||||||
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
||||||
# ./install, which can be erroneously created by make from ./install.sh.
|
# ./install, which can be erroneously created by make from ./install.sh.
|
||||||
echo "$as_me:$LINENO: checking for a BSD compatible install" >&5
|
echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
|
||||||
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
|
echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
|
||||||
if test -z "$INSTALL"; then
|
if test -z "$INSTALL"; then
|
||||||
if test "${ac_cv_path_install+set}" = set; then
|
if test "${ac_cv_path_install+set}" = set; then
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||||
@@ -1469,7 +1470,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE=bison
|
PACKAGE=bison
|
||||||
VERSION=1.34
|
VERSION=1.34a
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@@ -1925,8 +1926,8 @@ fi
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable cc found in \$PATH" >&5
|
test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH" >&5
|
||||||
echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
|
echo "$as_me: error: no acceptable C compiler found in \$PATH" >&2;}
|
||||||
{ (exit 1); exit 1; }; }
|
{ (exit 1); exit 1; }; }
|
||||||
|
|
||||||
# Provide some information about the compiler.
|
# Provide some information about the compiler.
|
||||||
@@ -2052,8 +2053,8 @@ echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
|
|||||||
echo "$as_me:$LINENO: result: $cross_compiling" >&5
|
echo "$as_me:$LINENO: result: $cross_compiling" >&5
|
||||||
echo "${ECHO_T}$cross_compiling" >&6
|
echo "${ECHO_T}$cross_compiling" >&6
|
||||||
|
|
||||||
echo "$as_me:$LINENO: checking for executable suffix" >&5
|
echo "$as_me:$LINENO: checking for suffix of executables" >&5
|
||||||
echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
|
echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
|
||||||
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
|
||||||
(eval $ac_link) 2>&5
|
(eval $ac_link) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
@@ -2073,8 +2074,8 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
{ { echo "$as_me:$LINENO: error: cannot compute EXEEXT: cannot compile and link" >&5
|
{ { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link" >&5
|
||||||
echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
|
echo "$as_me: error: cannot compute suffix of executables: cannot compile and link" >&2;}
|
||||||
{ (exit 1); exit 1; }; }
|
{ (exit 1); exit 1; }; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -2085,8 +2086,8 @@ echo "${ECHO_T}$ac_cv_exeext" >&6
|
|||||||
rm -f conftest.$ac_ext
|
rm -f conftest.$ac_ext
|
||||||
EXEEXT=$ac_cv_exeext
|
EXEEXT=$ac_cv_exeext
|
||||||
ac_exeext=$EXEEXT
|
ac_exeext=$EXEEXT
|
||||||
echo "$as_me:$LINENO: checking for object suffix" >&5
|
echo "$as_me:$LINENO: checking for suffix of object files" >&5
|
||||||
echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
|
echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
|
||||||
if test "${ac_cv_objext+set}" = set; then
|
if test "${ac_cv_objext+set}" = set; then
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||||
else
|
else
|
||||||
@@ -2124,8 +2125,8 @@ done
|
|||||||
else
|
else
|
||||||
echo "$as_me: failed program was:" >&5
|
echo "$as_me: failed program was:" >&5
|
||||||
cat conftest.$ac_ext >&5
|
cat conftest.$ac_ext >&5
|
||||||
{ { echo "$as_me:$LINENO: error: cannot compute OBJEXT: cannot compile" >&5
|
{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile" >&5
|
||||||
echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
|
echo "$as_me: error: cannot compute suffix of object files: cannot compile" >&2;}
|
||||||
{ (exit 1); exit 1; }; }
|
{ (exit 1); exit 1; }; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -2996,8 +2997,8 @@ echo "$as_me: WARNING: minix/config.h: accepted by the compiler, rejected by the
|
|||||||
{ echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: minix/config.h: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: minix/config.h: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: minix/config.h: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: minix/config.h: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: minix/config.h: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: minix/config.h: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: minix/config.h: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: minix/config.h: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: minix/config.h: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: minix/config.h: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the preprocessor's result" >&5
|
||||||
@@ -4143,8 +4144,8 @@ echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the pre
|
|||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
@@ -4669,8 +4670,8 @@ echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the pre
|
|||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
@@ -6059,8 +6060,8 @@ echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the pre
|
|||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
@@ -6374,8 +6375,8 @@ echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the pre
|
|||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
@@ -6703,8 +6704,8 @@ echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the pre
|
|||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
@@ -7312,8 +7313,8 @@ test -z "$ac_cv_build_alias" &&
|
|||||||
echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
|
echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
|
||||||
{ (exit 1); exit 1; }; }
|
{ (exit 1); exit 1; }; }
|
||||||
ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
|
ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
|
||||||
{ { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed." >&5
|
{ { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
|
||||||
echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
|
echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
|
||||||
{ (exit 1); exit 1; }; }
|
{ (exit 1); exit 1; }; }
|
||||||
|
|
||||||
fi
|
fi
|
||||||
@@ -7551,8 +7552,8 @@ echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the pre
|
|||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
@@ -7958,8 +7959,8 @@ echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the pre
|
|||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||||
@@ -8510,8 +8511,8 @@ echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the prep
|
|||||||
{ echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5
|
||||||
echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;};;
|
echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;};;
|
||||||
no:yes )
|
no:yes )
|
||||||
{ echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled." >&5
|
{ echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5
|
||||||
echo "$as_me: WARNING: libintl.h: present but cannot be compiled." >&2;}
|
echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5
|
{ echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5
|
||||||
echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;}
|
echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;}
|
||||||
{ echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5
|
{ echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5
|
||||||
@@ -9472,8 +9473,8 @@ _ASBOX
|
|||||||
} >&5
|
} >&5
|
||||||
cat >&5 <<_CSEOF
|
cat >&5 <<_CSEOF
|
||||||
|
|
||||||
This file was extended by GNU Bison $as_me 1.34, which was
|
This file was extended by GNU Bison $as_me 1.34a, which was
|
||||||
generated by GNU Autoconf 2.52i. Invocation command line was
|
generated by GNU Autoconf 2.53a. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
CONFIG_HEADERS = $CONFIG_HEADERS
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
||||||
@@ -9534,8 +9535,8 @@ _ACEOF
|
|||||||
|
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF
|
cat >>$CONFIG_STATUS <<_ACEOF
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
GNU Bison config.status 1.34
|
GNU Bison config.status 1.34a
|
||||||
configured by $0, generated by GNU Autoconf 2.52i,
|
configured by $0, generated by GNU Autoconf 2.53a,
|
||||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
||||||
|
|||||||
@@ -20,10 +20,10 @@
|
|||||||
# We need a recent Autoconf to run a recent Autotest.
|
# We need a recent Autoconf to run a recent Autotest.
|
||||||
AC_PREREQ(2.52g)
|
AC_PREREQ(2.52g)
|
||||||
|
|
||||||
AC_INIT([GNU Bison], [1.34], [bug-bison@gnu.org])
|
AC_INIT([GNU Bison], [1.34a], [bug-bison@gnu.org])
|
||||||
AC_CONFIG_AUX_DIR(config)
|
AC_CONFIG_AUX_DIR(config)
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE([bison], [1.34])
|
AM_INIT_AUTOMAKE([bison], [1.34a])
|
||||||
AM_CONFIG_HEADER(config.h:config.hin)
|
AM_CONFIG_HEADER(config.h:config.hin)
|
||||||
|
|
||||||
# Initialize the test suite.
|
# Initialize the test suite.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@set UPDATED 25 February 2002
|
@set UPDATED 25 February 2002
|
||||||
@set UPDATED-MONTH February 2002
|
@set UPDATED-MONTH February 2002
|
||||||
@set EDITION 1.34
|
@set EDITION 1.34a
|
||||||
@set VERSION 1.34
|
@set VERSION 1.34a
|
||||||
|
|||||||
2
po/de.po
2
po/de.po
@@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.33b\n"
|
"Project-Id-Version: bison 1.33b\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2002-03-05 10:42:19+0100\n"
|
"PO-Revision-Date: 2002-03-05 10:42:19+0100\n"
|
||||||
"Last-Translator: Michael Piefel <piefel@informatik.hu-berlin.de>\n"
|
"Last-Translator: Michael Piefel <piefel@informatik.hu-berlin.de>\n"
|
||||||
"Language-Team: German <de@li.org>\n"
|
"Language-Team: German <de@li.org>\n"
|
||||||
|
|||||||
2
po/es.po
2
po/es.po
@@ -30,7 +30,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GNU bison 1.25\n"
|
"Project-Id-Version: GNU bison 1.25\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 1998-09-21 10:19+0200\n"
|
"PO-Revision-Date: 1998-09-21 10:19+0200\n"
|
||||||
"Last-Translator: Nicolás García-Pedrajas <ngarcia-pedrajas@acm.org>\n"
|
"Last-Translator: Nicolás García-Pedrajas <ngarcia-pedrajas@acm.org>\n"
|
||||||
"Language-Team: Spanish <es@li.org>\n"
|
"Language-Team: Spanish <es@li.org>\n"
|
||||||
|
|||||||
2
po/et.po
2
po/et.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.33b\n"
|
"Project-Id-Version: bison 1.33b\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2002-03-05 16:27+0200\n"
|
"PO-Revision-Date: 2002-03-05 16:27+0200\n"
|
||||||
"Last-Translator: Toomas Soome <tsoome@ut.ee>\n"
|
"Last-Translator: Toomas Soome <tsoome@ut.ee>\n"
|
||||||
"Language-Team: Estonian <et@li.org>\n"
|
"Language-Team: Estonian <et@li.org>\n"
|
||||||
|
|||||||
2
po/fr.po
2
po/fr.po
@@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GNU bison 1.33b\n"
|
"Project-Id-Version: GNU bison 1.33b\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2002-03-12 16:49+0100\n"
|
"PO-Revision-Date: 2002-03-12 16:49+0100\n"
|
||||||
"Last-Translator: Michel Robitaille <robitail@IRO.UMontreal.CA>\n"
|
"Last-Translator: Michel Robitaille <robitail@IRO.UMontreal.CA>\n"
|
||||||
"Language-Team: French <traduc@traduc.org>\n"
|
"Language-Team: French <traduc@traduc.org>\n"
|
||||||
|
|||||||
2
po/it.po
2
po/it.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.31\n"
|
"Project-Id-Version: bison 1.31\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2002-01-23 14:16+0100\n"
|
"PO-Revision-Date: 2002-01-23 14:16+0100\n"
|
||||||
"Last-Translator: Paolo Bonzini <bonzini@gnu.org>\n"
|
"Last-Translator: Paolo Bonzini <bonzini@gnu.org>\n"
|
||||||
"Language-Team: Italian <it@li.org>\n"
|
"Language-Team: Italian <it@li.org>\n"
|
||||||
|
|||||||
2
po/ja.po
2
po/ja.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GNU bison 1.30f\n"
|
"Project-Id-Version: GNU bison 1.30f\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2001-12-10 15:59+0900\n"
|
"PO-Revision-Date: 2001-12-10 15:59+0900\n"
|
||||||
"Last-Translator: Daisuke Yamashita <yamad@mb.infoweb.ne.jp>\n"
|
"Last-Translator: Daisuke Yamashita <yamad@mb.infoweb.ne.jp>\n"
|
||||||
"Language-Team: Japanese <ja@li.org>\n"
|
"Language-Team: Japanese <ja@li.org>\n"
|
||||||
|
|||||||
2
po/nl.po
2
po/nl.po
@@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.32\n"
|
"Project-Id-Version: bison 1.32\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2002-02-01 18:46+0000\n"
|
"PO-Revision-Date: 2002-02-01 18:46+0000\n"
|
||||||
"Last-Translator: Tim Van Holder <tim.van.holder@pandora.be>\n"
|
"Last-Translator: Tim Van Holder <tim.van.holder@pandora.be>\n"
|
||||||
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
||||||
|
|||||||
2
po/ru.po
2
po/ru.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.32\n"
|
"Project-Id-Version: bison 1.32\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2002-01-25 12:19+0300\n"
|
"PO-Revision-Date: 2002-01-25 12:19+0300\n"
|
||||||
"Last-Translator: Dmitry S. Sivachenko <dima@Chg.RU>\n"
|
"Last-Translator: Dmitry S. Sivachenko <dima@Chg.RU>\n"
|
||||||
"Language-Team: Russian <ru@li.org>\n"
|
"Language-Team: Russian <ru@li.org>\n"
|
||||||
|
|||||||
2
po/sv.po
2
po/sv.po
@@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.33b\n"
|
"Project-Id-Version: bison 1.33b\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2002-03-05 10:18+0100\n"
|
"PO-Revision-Date: 2002-03-05 10:18+0100\n"
|
||||||
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
|
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
|
||||||
"Language-Team: Swedish <sv@li.org>\n"
|
"Language-Team: Swedish <sv@li.org>\n"
|
||||||
|
|||||||
2
po/tr.po
2
po/tr.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.33b\n"
|
"Project-Id-Version: bison 1.33b\n"
|
||||||
"POT-Creation-Date: 2002-03-04 19:13+0100\n"
|
"POT-Creation-Date: 2002-03-12 17:53+0100\n"
|
||||||
"PO-Revision-Date: 2002-03-05 14:30GMT +02:00\n"
|
"PO-Revision-Date: 2002-03-05 14:30GMT +02:00\n"
|
||||||
"Last-Translator: Altuð Bayram <altugbayram_2000@yahoo.com>\n"
|
"Last-Translator: Altuð Bayram <altugbayram_2000@yahoo.com>\n"
|
||||||
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
|
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
|
||||||
|
|||||||
@@ -456,7 +456,7 @@ compute_output_file_names (void)
|
|||||||
else
|
else
|
||||||
parser_filename = stringappend (full_base_name, src_extension);
|
parser_filename = stringappend (full_base_name, src_extension);
|
||||||
if (!strcmp (spec_defines_file, parser_filename))
|
if (!strcmp (spec_defines_file, parser_filename))
|
||||||
fatal ("header and parser would be both named %s",
|
fatal ("header and parser would both be named %s",
|
||||||
quote (parser_filename));
|
quote (parser_filename));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Checking the output filenames. -*- Autotest -*-
|
# Checking the output filenames. -*- Autotest -*-
|
||||||
# Copyright 2000, 2001 Free Software Foundation, Inc.
|
# Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -84,12 +84,12 @@ AT_CHECK_OUTPUT([foo.yy], [],
|
|||||||
|
|
||||||
# Be sure to reject cases where the parser and the header would have
|
# Be sure to reject cases where the parser and the header would have
|
||||||
# the same name.
|
# the same name.
|
||||||
AT_SETUP([Clashing Output Files.])
|
AT_SETUP([Clashing Output Files])
|
||||||
AT_DATA([foo.y],
|
AT_DATA([foo.y],
|
||||||
[[%% foo: {};
|
[[%% foo: {};
|
||||||
]])
|
]])
|
||||||
|
|
||||||
AT_CHECK([bison -do foo.x foo.y], [1], [],
|
AT_CHECK([bison -do foo.x foo.y], [1], [],
|
||||||
[foo.y:2: fatal error: header and parser would be both named `foo.x'
|
[foo.y:2: fatal error: header and parser would both be named `foo.x'
|
||||||
])
|
])
|
||||||
AT_CLEANUP
|
AT_CLEANUP
|
||||||
|
|||||||
Reference in New Issue
Block a user