texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Wed Mar 9 09:52:01 EST 2005)


From: Karl Berry
Subject: texinfo update (Wed Mar 9 09:52:01 EST 2005)
Date: Wed, 09 Mar 2005 09:52:17 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.474
retrieving revision 1.475
diff -c -r1.474 -r1.475
*** ChangeLog   8 Mar 2005 15:06:34 -0000       1.474
--- ChangeLog   9 Mar 2005 14:46:27 -0000       1.475
***************
*** 1,3 ****
--- 1,9 ----
+ 2005-03-08  Keith Marshall  <address@hidden>
+ 
+       * makeinfo/tests/no-headers: ($nulldev): new variable.
+         set it to `/dev/null' normally, but to `nul' on Win32,
+         so Cygwin doesn't fail this test, in `make check'.
+ 
  2005-03-08  Karl Berry  <address@hidden>
  
        * info/filesys.h (DEFAULT_INFOPATH): make . first in the path,
Index: makeinfo/tests/no-headers
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/tests/no-headers,v
retrieving revision 1.2
retrieving revision 1.3
diff -c -r1.2 -r1.3
*** makeinfo/tests/no-headers   11 Apr 2004 17:56:47 -0000      1.2
--- makeinfo/tests/no-headers   9 Mar 2005 14:46:28 -0000       1.3
***************
*** 2,9 ****
  # Test that info.texi works with --no-headers (this includes node
  # pointer defaulting).
  
  unset TEXINFO_OUTPUT
  : ${srcdir=.}
  docdir=$srcdir/../../doc
  
! ../makeinfo --no-headers -o /dev/null -I$docdir info.texi
--- 2,14 ----
  # Test that info.texi works with --no-headers (this includes node
  # pointer defaulting).
  
+ # Test may fail on Cygwin, if we say `-o /dev/null',
+ # but is ok if we substitute the Win32 native `nul' device,
+ # (seen by `test -e', but not char-special in `test -c').
+ test -e nul && nulldev=nul || nulldev=/dev/null
+ 
  unset TEXINFO_OUTPUT
  : ${srcdir=.}
  docdir=$srcdir/../../doc
  
! ../makeinfo --no-headers -o $nulldev -I$docdir info.texi
P ChangeLog
P makeinfo/tests/no-headers


reply via email to

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