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 /ld | |
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 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/Makefile.am | 5 | ||||
-rw-r--r-- | ld/Makefile.in | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 6b11a80..f83f113 100644 --- a/ld/ChangeLog +++ b/ld/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 (bin_PROGRAMS): Renamed from ... diff --git a/ld/Makefile.am b/ld/Makefile.am index a268898..bc4915c 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -12,6 +12,11 @@ YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bis YFLAGS = -d 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/ld/Makefile.in b/ld/Makefile.in index 80105a2..f36e34c 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -323,6 +323,11 @@ ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex SUBDIRS = 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) # We put the scripts in the directory $(scriptdir)/ldscripts. |