This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Patch]: upgrade to automake 1.11.1


* Ian Lance Taylor wrote on Wed, Apr 07, 2010 at 03:57:17PM CEST:
> Ralf Wildenhues writes:
> > Well, a per-Makefile.am setting only affects that directory; if you want
> > the setting to apply to all gold directories, we can use
> >   AM_INIT_AUTOMAKE([no-dist])
> >
> > in configure.ac, that's cleaner than repeating.  OK instead?
> > (The problematic part of the 'make dist' code only happens in toplevel
> > Makefiles.)
> 
> Either way is fine with me.  Whatever works.

OK.  I committed this now.

Thanks,
Ralf

2010-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

	* configure.ac (AM_INIT_AUTOMAKE): Add option no-dist.
	* configure: Regenerate.
	* Makefile.in: Regenerate.
	* testsuite/Makefile.in: Regenerate.

Index: configure.ac
===================================================================
RCS file: /cvs/src/src/gold/configure.ac,v
retrieving revision 1.54
diff -u -r1.54 configure.ac
--- configure.ac	6 Feb 2010 20:14:01 -0000	1.54
+++ configure.ac	7 Apr 2010 21:06:39 -0000
@@ -7,7 +7,7 @@
 
 AC_CANONICAL_TARGET
 
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([no-dist])
 
 AM_CONFIG_HEADER(config.h:config.in)
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]