diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2009-08-24 05:55:55 +0000 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2009-08-24 05:55:55 +0000 |
commit | a15af8e2a701878628fc17f5abfdd088aeec4fa3 (patch) | |
tree | 7a19409025cdf52b3341b3c01c192c53f3714e5f /gas/Makefile.am | |
parent | a0367d1c21ee78ccbe4b6654b72729b2ac7d2e04 (diff) | |
download | gdb-a15af8e2a701878628fc17f5abfdd088aeec4fa3.zip gdb-a15af8e2a701878628fc17f5abfdd088aeec4fa3.tar.gz gdb-a15af8e2a701878628fc17f5abfdd088aeec4fa3.tar.bz2 |
Fix yacc and lex reruns with maintainer-mode off.
gas/:
* Makefile.am (am__skiplex, am__skipyacc): New.
* Makefile.in: Regenerate.
ld/:
* Makefile.am (am__skiplex, am__skipyacc): New.
* Makefile.in: Regenerate.
binutils/:
* Makefile.am (am__skiplex, am__skipyacc): New.
* Makefile.in: Regenerate.
gold/:
* Makefile.am (am__skiplex, am__skipyacc): New.
* Makefile.in: Regenerate.
Diffstat (limited to 'gas/Makefile.am')
-rw-r--r-- | gas/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gas/Makefile.am b/gas/Makefile.am index a3adf0b..27a7d1a 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -10,6 +10,11 @@ tooldir = $(exec_prefix)/$(target_alias) YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi` LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi` +# Automake 1.10+ disables lex and yacc output file regeneration if +# maintainer mode is disabled. Avoid this. +am__skiplex = +am__skipyacc = + WARN_CFLAGS = @WARN_CFLAGS@ NO_WERROR = @NO_WERROR@ AM_CFLAGS = $(WARN_CFLAGS) |