This is the mail archive of the binutils@sources.redhat.com 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: Binutils is broken with -j N


On Wed, 25 May 2005, H. J. Lu wrote:

> I changed:
> 
> all: info ld.1
> 
> ld.1: x
> 
> info: info-recursive
> 
> info-recursive:
> 	$(MAKE) info-am 
> 
> info-am: x
> 
> to:
> 
> all: info ld.1
> 
> ld.1: x
> 
> info-recursive: ld.1
> 
> info: info-recursive
> 
> info-recursive:
> 	$(MAKE) info-am 
> 
> info-am: x

 This is all fiddling with internal undocumented (i.e. possibly 
version-specific) automake logic.  Which means it's quite fragile and has 
traditionally made updating to newer versions of autotools rather painful.  
E.g. you are not expected to override *-recursive targets.  Can't it 
actually be done using documented techniques?

  Maciej


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