diff options
author | unknown <lenz@mysql.com> | 2002-05-15 11:06:44 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-05-15 11:06:44 +0200 |
commit | 00d62e8dc5ded1f4ab612d05f8807312c05da9f6 (patch) | |
tree | 5325913f53f6cbe83961b41466be6e64c99af64d /Makefile.am | |
parent | eba5ec8b4bceabab302462db850882f715a7b040 (diff) | |
download | mariadb-git-00d62e8dc5ded1f4ab612d05f8807312c05da9f6.tar.gz |
Fixed sql_yacc.yy to be compatible with bison 1.31 and above.
Made detection of GNU tar a bit more flexible.
Only use /usr/local/mysql-glibc if it actually exists
Build-tools/Do-linux-build:
Only use the "--with-other-libc" parameter, if another libc actually
exists at this location
Makefile.am:
Removed hard-coded tar binary name
configure.in:
Added check for GNU tar with various names
sql/sql_yacc.yy:
Added semicolons to several expressions to make bison 1.31 and above
happy when used in Yacc compatibility mode. From the bison NEWS:
"Bison has always permitted actions such as { $$ = $1 }: it adds the
ending semicolon. Now if in Yacc compatibility mode, the semicolon
is no longer output: one has to write { $$ = $1; }."
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 22e066ac9d4..ac65dcda820 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,7 +17,7 @@ # Process this file with automake to create Makefile.in AUTOMAKE_OPTIONS = foreign -TAR = gtar + # These are built from source in the Docs directory EXTRA_DIST = INSTALL-SOURCE README \ COPYING COPYING.LIB MIRRORS |