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.in | |
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.in')
-rw-r--r-- | gas/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
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 |