diff options
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 5 | ||||
-rw-r--r-- | gold/Makefile.am | 5 | ||||
-rw-r--r-- | gold/Makefile.in | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 291c5d6..162e73f 100644 --- a/gold/ChangeLog +++ b/gold/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 (AM_CPPFLAGS): Renamed from ... diff --git a/gold/Makefile.am b/gold/Makefile.am index 876cc9b..8d8b617 100644 --- a/gold/Makefile.am +++ b/gold/Makefile.am @@ -29,6 +29,11 @@ endif AM_YFLAGS = -d +# Automake 1.10+ disables lex and yacc output file regeneration if +# maintainer mode is disabled. Avoid this. +am__skiplex = +am__skipyacc = + noinst_PROGRAMS = ld-new noinst_LIBRARIES = libgold.a diff --git a/gold/Makefile.in b/gold/Makefile.in index a240795..d4c689b 100644 --- a/gold/Makefile.in +++ b/gold/Makefile.in @@ -342,6 +342,11 @@ LIBIBERTY = ../libiberty/libiberty.a @PLUGINS_TRUE@LIBDL = -ldl @THREADS_TRUE@THREADSLIB = -lpthread AM_YFLAGS = -d + +# Automake 1.10+ disables lex and yacc output file regeneration if +# maintainer mode is disabled. Avoid this. +am__skiplex = +am__skipyacc = noinst_LIBRARIES = libgold.a CCFILES = \ archive.cc \ |