automake-ng
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Automake-NG] [PATCH 18/26] [ng] coverage: texinfo input files using


From: Stefano Lattarini
Subject: Re: [Automake-NG] [PATCH 18/26] [ng] coverage: texinfo input files using @include directives
Date: Sun, 17 Jun 2012 10:22:07 +0200

On 06/17/2012 09:05 AM, Akim Demaille wrote:
> 
> Le 16 juin 2012 à 23:30, Stefano Lattarini a écrit :
> 
>> +cat > three.texi << 'END'
>> address@hidden three
>> address@hidden Chapter two
>> +Gnu's Not Unix.
> 
> It should read GNU.
>
We're pedantic today, eh?  ;-)

Fixed.

>> +END
>> +
>> +mkdir sub
>> +
>> +cat > sub/more.texi << 'END'
>> +\input texinfo
>> address@hidden more.info
>> address@hidden main
>> address@hidden
>> address@hidden Top
>> address@hidden GNU more.
>> address@hidden
>> +* desc:: Description of this program
>> +* hist:: History of this program
> 
> Good idea, when will you do it? :)
>
>> +get_info_names ()
>> +{
>> +  find ${1-.} -type f | grep '\.info$' | LC_ALL=C sort > got
> 
> Can't you use -name '*.info'?
>
I was somehow convinced '-name' was unportable, but since it works
with Solaris /usr/bin/find, it must work on ever system worth
supporting.  So The above now reads:

    find ${1-.} -type f -name '*.info' | LC_ALL=C sort > got

Thanks,
  Stefano



reply via email to

[Prev in Thread] Current Thread [Next in Thread]