Changeset 8e7cdc8b in rtems


Ignore:
Timestamp:
08/07/03 05:17:27 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
fbd27c8
Parents:
6b5a7b50
Message:

Merger from rtems-4-6-branch

Location:
doc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/ChangeLog

    r6b5a7b50 r8e7cdc8b  
    1 2003-04-11      Joel Sherrill <joel@OARcorp.com>
    2 
    3         * index.html.in: Development Environment Guide should be updated now.
    4 
    512003-04-11      Joel Sherrill <joel@OARcorp.com>
    62
  • doc/configure.ac

    r6b5a7b50 r8e7cdc8b  
    66AC_CONFIG_SRCDIR([project.am])
    77RTEMS_TOP([..])
    8 AC_CONFIG_AUX_DIR([..])
    98
    109AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
     
    8382AC_CHECK_PROGS(TEXI2DVI,texi2dvi)
    8483AM_CONDITIONAL(TEXI2DVI,test x"$TEXI2DVI" != x"")
    85 if test "$enable_pdf" = "yes"; then
    86   AC_CHECK_PROGS(EPSTOPDF,epstopdf)
    87   AM_CONDITIONAL(EPSTOPDF,test x"$EPSTOPDF" != x"")
    8884
    89   AC_CHECK_PROGS(TEXI2PDF,texi2pdf)
    90   AM_CONDITIONAL(TEXI2PDF,test x"$TEXI2PDF" != x"")
    91 fi
     85AC_CHECK_PROGS(EPSTOPDF,epstopdf)
     86AM_CONDITIONAL(EPSTOPDF,
     87  test "$enable_pdf" = "yes" \
     88    && test x"$EPSTOPDF" != x"" )
     89
     90AC_CHECK_PROGS(TEXI2PDF,texi2pdf)
     91AM_CONDITIONAL(TEXI2PDF,
     92  test "$enable_pdf" = "yes" \
     93    && test x"$TEXI2PDF" != x"")
    9294
    9395AM_CONDITIONAL(USE_HTML,
    94   test "$enable_html" = "yes"  \
     96  test "$enable_html" = "yes" \
    9597     && test x"PERL" != x"" )
    9698
  • doc/project.am

    r6b5a7b50 r8e7cdc8b  
    99CLEANFILES =
    1010MOSTLYCLEANFILES =
    11 CLEANFILES += $(PROJECT) $(PROJECT)-[0-9] $(PROJECT)-[0-9][0-9]
     11CLEANFILES += $(PROJECT).info $(PROJECT).info-[0-9] $(PROJECT).info-[0-9][0-9]
    1212CLEANFILES += $(GENERATED_FILES)
    1313
Note: See TracChangeset for help on using the changeset viewer.