Re: 'Argument list too long' in non-recursive setup

2009-07-30 Thread Ralf Wildenhues
* Paolo Bonzini wrote on Thu, Jul 30, 2009 at 08:41:52AM CEST: > GCC has this: > > # write_entries_to_file - writes each entry in a list [...] > Maybe you can unfunctionize it and do something like > > write_entries_to_file = echo $(DISTFILES) | tr ' ' '\n' > DISTFILES.list > > write_entries_to

Re: 'Argument list too long' in non-recursive setup

2009-07-30 Thread Xan Lopez
On Thu, Jul 30, 2009 at 9:48 AM, Ralf Wildenhues wrote: > Hi Paolo, > > * Paolo Bonzini wrote on Thu, Jul 30, 2009 at 08:41:52AM CEST: >> >I'll take this up with bug-make.  Thank you again for bringing it up. >> >> GCC has this: > > Yes, I know.  (I didn't write that code originally, but I worked o

Re: 'Argument list too long' in non-recursive setup

2009-07-30 Thread Paolo Bonzini
I'll take this up with bug-make. Thank you again for bringing it up. GCC has this: # write_entries_to_file - writes each entry in a list # to the specified file. Entries are written in chunks of # $(write_entries_to_file_split) to accomodate systems with # severe command-line-length limitatio