Changeset e275cab in rtems


Ignore:
Timestamp:
06/12/00 17:09:16 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ce5b291f
Parents:
91a49b38
Message:

Patch rtemsdoc-4.5.0-rc-12-cvs.diff from Ralf Corsepius
<corsepiu@…> that makes the following changes:

  • Don't use a temporary file for ch19.texi anymore
  • pass all files to be handled by summarize as commandline arguments
  • Remove a dangling empty first line in posix1003_1.texi (texi2html (!) expects \input texinfo on the first line)
Location:
doc/posix1003.1
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/posix1003.1/Makefile.am

    r91a49b38 re275cab  
    1616GENERATED_FILES = ch01.texi ch02.texi ch03.texi ch04.texi ch05.texi \
    1717    ch06.texi ch07.texi ch08.texi ch09.texi ch10.texi ch11.texi ch12.texi \
    18     ch13.texi ch14.texi ch15.texi ch16.texi ch17.texi ch18.texi ch19.t \
    19     ch19.texi
     18    ch13.texi ch14.texi ch15.texi ch16.texi ch17.texi ch18.texi ch19.texi
    2019
    2120COMMON_FILES = $(top_srcdir)/common/setup.texi \
     
    117116            -n "Compliance Summary" < $< > $@
    118117
    119 $(srcdir)/ch19.t: ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t \
    120     ch09.t ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t \
    121     summarize
    122         (cd $(srcdir) && ./summarize > $@)
    123 
    124 $(srcdir)/ch19.texi: ch19.t
     118$(srcdir)/ch19.texi: ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t \
     119    ch09.t ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t
     120        $(srcdir)/summarize $^ | \
    125121        $(BMENU2) -c -p "List of Cancellation Points" \
    126122            -u "Top" \
    127             -n "Command and Variable Index" < $< > $@
     123            -n "Command and Variable Index" > $@
    128124
    129125noinst_SCRIPTS = summarize
    130126
    131127EXTRA_DIST = ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t ch09.t \
    132     ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t ch19.t \
     128    ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t \
    133129    compliance_list summarize
  • doc/posix1003.1/posix1003_1.texi

    r91a49b38 re275cab  
    1 
    21\input texinfo   @c -*-texinfo-*-
    32@c %**start of header
  • doc/posix1003.1/summarize

    r91a49b38 re275cab  
    183183}
    184184
    185 chapters="ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t \
    186     ch09.t ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t"
     185if test $# -lt 1; then
     186  echo "Missing arguments"
     187  exit 1
     188fi
     189chapters="$*"
    187190
    188191# go through the chapters one at a time
Note: See TracChangeset for help on using the changeset viewer.