From dd0d9ec842d77c9cf0e7ae0d5013c4e36bbee892 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Mon, 24 Aug 2009 05:55:55 +0000 Subject: 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. --- gas/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gas/Makefile.am') diff --git a/gas/Makefile.am b/gas/Makefile.am index a3adf0b720..27a7d1a1c0 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) -- cgit v1.2.1