diff options
author | SL Baur <steve@altair.xemacs.org> | 1998-09-03 16:43:40 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-09-03 16:43:40 -0600 |
commit | 0a682beac5fc3197732accdeb7c1ed602be9e9ca (patch) | |
tree | 33071569649fa09f2fc164a56713326ec007ad23 /gcc | |
parent | d4620cf12906f91732d468c8072e6e53f3ab4779 (diff) | |
download | gcc-0a682beac5fc3197732accdeb7c1ed602be9e9ca.zip gcc-0a682beac5fc3197732accdeb7c1ed602be9e9ca.tar.gz gcc-0a682beac5fc3197732accdeb7c1ed602be9e9ca.tar.bz2 |
Makefile.in: add semicolon in BISON definition for portability.
* Makefile.in: add semicolon in BISON definition for portability.
From-SVN: r22228
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c1beec3..a61cb25 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -79,7 +79,7 @@ CC = @CC@ 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 = |