From: Zack Weinberg Date: Fri, 30 Apr 1999 17:57:22 +0000 (+0000) Subject: Makefile.in: Remove -v from bison command lines. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b4c92efcded5689c753369e0911ff41017c3adcb;p=gcc.git Makefile.in: Remove -v from bison command lines. 1999-04-30 20:54 -0400 Zack Weinberg * Makefile.in: Remove -v from bison command lines. From-SVN: r26714 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index cb1285fafc3..bed1b0d386f 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +1999-04-30 20:54 -0400 Zack Weinberg + + * Makefile.in: Remove -v from bison command lines. + 1999-04-29 Anthony Green * expr.c (generate_name): Use ASM_GENERATE_INTERNAL_LABEL to diff --git a/gcc/java/Makefile.in b/gcc/java/Makefile.in index f057d66dce7..90f45fdde56 100644 --- a/gcc/java/Makefile.in +++ b/gcc/java/Makefile.in @@ -234,12 +234,12 @@ PARSE_H = $(srcdir)/parse.h $(PARSE_C): $(srcdir)/parse.y $(srcdir)/lex.c $(PARSE_H) $(srcdir)/lex.h $(SET_BISON); \ - cd $(PARSE_DIR) && $$bison -t -v $(BISONFLAGS) $(JAVABISONFLAGS) \ + cd $(PARSE_DIR) && $$bison -t $(BISONFLAGS) $(JAVABISONFLAGS) \ -o parse.c $(PARSE_RELDIR)/parse.y $(PARSE_SCAN_C): $(srcdir)/parse-scan.y $(srcdir)/lex.c $(PARSE_H) \ $(srcdir)/lex.h $(SET_BISON); \ - cd $(PARSE_DIR) && $$bison -t -v $(BISONFLAGS) -o parse-scan.c \ + cd $(PARSE_DIR) && $$bison -t $(BISONFLAGS) -o parse-scan.c \ $(PARSE_RELDIR)/parse-scan.y lex.c: keyword.h lex.h