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 | |
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')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/Makefile.am | 5 | ||||
-rw-r--r-- | gas/Makefile.in | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index d4fdd63..e84da3b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + * Makefile.am (am__skiplex, am__skipyacc): New. + * Makefile.in: Regenerate. + 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * Makefile.am (YFLAGS): Remove, not needed any more. 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) diff --git a/gas/Makefile.in b/gas/Makefile.in index f385064..9f6f02e 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -280,6 +280,11 @@ AUTOMAKE_OPTIONS = 1.11 dejagnu foreign no-dist ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd SUBDIRS = doc po tooldir = $(exec_prefix)/$(target_alias) + +# Automake 1.10+ disables lex and yacc output file regeneration if +# maintainer mode is disabled. Avoid this. +am__skiplex = +am__skipyacc = AM_CFLAGS = $(WARN_CFLAGS) TARG_CPU = @target_cpu_type@ TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c |