[Top][All Lists]
[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
- Re: [Automake-NG] [PATCH 13/26] [ng] texi: drop transforms when reading texibuild.am, (continued)
- [Automake-NG] [PATCH 14/26] [ng] texi: adjust names of vars used for silent rules support, Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 15/26] [ng] texi: drop a useless transform when processing texinfos.am, Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 16/26] [ng] refactor: more proper name for a subroutine in automake, Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 17/26] [ng] texi: always look for mdate-sh in the build-aux directory ..., Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 18/26] [ng] coverage: texinfo input files using @include directives, Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 19/26] [ng] automake: remove two unused variables from '&handle_texinfo_source', Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 21/26] [ng] texi: move some more knowledge from automake to texi-spec.am, Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 22/26] [ng] texi: simplify handle_texinfo_source by assuming '.info' suffix ..., Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 23/26] [ng] automake: merge handle_texinfo_source() -> handle_texinfo_helper(), Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 20/26] [ng] texi: in texi-spec.am, assume suffix for info files is always '.info', Stefano Lattarini, 2012/06/16