bug-texinfo
[Top][All Lists]
Advanced

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

texinfo CVS version fails make check if build tree != source tree


From: ezra peisach
Subject: texinfo CVS version fails make check if build tree != source tree
Date: Fri, 12 Sep 2003 13:53:32 -0400 (EDT)


The makinfo/tests/html-manuals test fails if the build tree != source tree
when one tries to include `version-stnd.texi'

The failure is that makeinfo is invoked:

../makeinfo --html -I$srcdir/../../doc --no-split \
              $srcdir/../../doc/$manual -o $base.html \

which looks in the source tree for version-stnd.texi - but this file
exists in the build tree only.

Simple fix: add -I../../doc to the command line... Redundant when srcdir=.
 - but easy....

Ezra


Index: html-manuals
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/tests/html-manuals,v
retrieving revision 1.1
diff -c -r1.1 html-manuals
*** html-manuals        25 Aug 2002 23:38:39 -0000      1.1
--- html-manuals        12 Sep 2003 17:50:47 -0000
***************
*** 5,11 ****
  
  for manual in info.texi info-stnd.texi texinfo.txi; do
    base=`echo $manual | sed 's/\.te*xi$//'`
!   ../makeinfo --html -I$srcdir/../../doc --no-split \
                $srcdir/../../doc/$manual -o $base.html \
    || exit 1
    rm -f $base.html
--- 5,11 ----
  
  for manual in info.texi info-stnd.texi texinfo.txi; do
    base=`echo $manual | sed 's/\.te*xi$//'`
!   ../makeinfo --html -I$srcdir/../../doc -I../../doc --no-split \
                $srcdir/../../doc/$manual -o $base.html \
    || exit 1
    rm -f $base.html




reply via email to

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