Release status
SL Baur
steve@xemacs.org
Thu Sep 3 05:16:00 GMT 1998
Jeffrey A Law <law@cygnus.com> writes:
> I've placed the tarballs in the release directory on the ftp server.
I've found a slight portability problem in gcc/Makefile.
It bombs out if running zsh as /bin/sh. This patch shouldn't hurt
anything else. The zsh folks have been notified.
1998-09-03 SL Baur <steve@altair.xemacs.org>
* Makefile.in: add semicolon in BISON definition for portability.
--- egcs-1.1a/gcc/Makefile.in~ Thu Jul 30 05:52:17 1998
+++ egcs-1.1a/gcc/Makefile.in Wed Sep 2 18:10:06 1998
@@ -78,7 +78,7 @@
BISON = `if [ -f $(objdir)/../bison/bison ] ; then case $(srcdir) in \
/*) echo $(objdir)/../bison/bison -L $(srcdir)/../bison/ ;; \
*) echo $(objdir)/../bison/bison -L $(objdir)/$(srcdir)/../bison/ ;; \
- esac else echo bison ; fi`
+ esac; else echo bison ; fi`
BISONFLAGS =
LEX = `if [ -f $(objdir)/../flex/flex ] ; then echo $(objdir)/../flex/flex ; else echo flex ; fi`
LEXFLAGS =
More information about the Gcc
mailing list