texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Jul 1 09:22:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Fri Jul 1 09:22:01 EDT 2005)
Date: Fri, 01 Jul 2005 09:22:10 -0400

Index: config.sub
===================================================================
RCS file: /cvsroot/texinfo/texinfo/config.sub,v
retrieving revision 1.37
retrieving revision 1.38
diff -c -r1.37 -r1.38
*** config.sub  30 Jun 2005 12:23:02 -0000      1.37
--- config.sub  1 Jul 2005 13:18:36 -0000       1.38
***************
*** 3,9 ****
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
  #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
  
! timestamp='2005-06-30'
  
  # This file is (in principle) common to ALL GNU software.
  # The presence of a machine in this file suggests that SOME GNU software
--- 3,9 ----
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
  #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
  
! timestamp='2005-07-01'
  
  # This file is (in principle) common to ALL GNU software.
  # The presence of a machine in this file suggests that SOME GNU software
***************
*** 260,266 ****
        | ms1 \
        | msp430 \
        | ns16k | ns32k \
!       | openrisc | or32 \
        | pdp10 | pdp11 | pj | pjl \
        | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
        | pyramid \
--- 260,266 ----
        | ms1 \
        | msp430 \
        | ns16k | ns32k \
!       | or32 \
        | pdp10 | pdp11 | pj | pjl \
        | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
        | pyramid \
***************
*** 771,779 ****
                basic_machine=hppa1.1-oki
                os=-proelf
                ;;
!       or32 | or32-*)
                basic_machine=or32-unknown
-               os=-coff
                ;;
        os400)
                basic_machine=powerpc-ibm
--- 771,778 ----
                basic_machine=hppa1.1-oki
                os=-proelf
                ;;
!       openrisc | openrisc-*)
                basic_machine=or32-unknown
                ;;
        os400)
                basic_machine=powerpc-ibm
Index: mkinstalldirs
===================================================================
RCS file: /cvsroot/texinfo/texinfo/mkinstalldirs,v
retrieving revision 1.13
retrieving revision 1.14
diff -c -r1.13 -r1.14
*** mkinstalldirs       15 May 2005 13:05:23 -0000      1.13
--- mkinstalldirs       1 Jul 2005 13:18:36 -0000       1.14
***************
*** 1,7 ****
  #! /bin/sh
  # mkinstalldirs --- make directory hierarchy
  
! scriptversion=2005-05-14.22
  
  # Original author: Noah Friedman <address@hidden>
  # Created: 1993-05-16
--- 1,7 ----
  #! /bin/sh
  # mkinstalldirs --- make directory hierarchy
  
! scriptversion=2005-06-29.22
  
  # Original author: Noah Friedman <address@hidden>
  # Created: 1993-05-16
***************
*** 12,18 ****
  # <address@hidden>.
  
  errstatus=0
! dirmode=""
  
  usage="\
  Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
--- 12,18 ----
  # <address@hidden>.
  
  errstatus=0
! dirmode=
  
  usage="\
  Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
***************
*** 103,115 ****
  
  for file
  do
!   set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
    shift
  
-   pathcomp=
    for d
    do
!     pathcomp="$pathcomp$d"
      case $pathcomp in
        -*) pathcomp=./$pathcomp ;;
      esac
--- 103,123 ----
  
  for file
  do
!   case $file in
!     /*) pathcomp=/ ;;
!     *)  pathcomp= ;;
!   esac
!   oIFS=$IFS
!   IFS=/
!   set fnord $file
    shift
+   IFS=$oIFS
  
    for d
    do
!     test "x$d" = x && continue
! 
!     pathcomp=$pathcomp$d
      case $pathcomp in
        -*) pathcomp=./$pathcomp ;;
      esac
***************
*** 124,130 ****
        else
        if test ! -z "$dirmode"; then
          echo "chmod $dirmode $pathcomp"
!         lasterr=""
          chmod "$dirmode" "$pathcomp" || lasterr=$?
  
          if test ! -z "$lasterr"; then
--- 132,138 ----
        else
        if test ! -z "$dirmode"; then
          echo "chmod $dirmode $pathcomp"
!         lasterr=
          chmod "$dirmode" "$pathcomp" || lasterr=$?
  
          if test ! -z "$lasterr"; then
***************
*** 134,140 ****
        fi
      fi
  
!     pathcomp="$pathcomp/"
    done
  done
  
--- 142,148 ----
        fi
      fi
  
!     pathcomp=$pathcomp/
    done
  done
  
Index: doc/mdate-sh
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/mdate-sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -c -r1.8 -r1.9
*** doc/mdate-sh        15 May 2005 13:05:23 -0000      1.8
--- doc/mdate-sh        1 Jul 2005 13:18:36 -0000       1.9
***************
*** 1,7 ****
  #!/bin/sh
  # Get modification time of a file or directory and pretty-print it.
  
! scriptversion=2005-05-14.22
  
  # Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005 Free Software
  # Foundation, Inc.
--- 1,7 ----
  #!/bin/sh
  # Get modification time of a file or directory and pretty-print it.
  
! scriptversion=2005-06-29.22
  
  # Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005 Free Software
  # Foundation, Inc.
***************
*** 59,65 ****
  LC_TIME=C
  export LC_TIME
  
! save_arg1="$1"
  
  # Find out how to get the extended ls output of a file or directory.
  if ls -L /dev/null 1>/dev/null 2>&1; then
--- 59,73 ----
  LC_TIME=C
  export LC_TIME
  
! # GNU ls changes its time format in response to the TIME_STYLE
! # variable.  Since we cannot assume `unset' works, revert this
! # variable to its documented default.
! if test "${TIME_STYLE+set}" = set; then
!   TIME_STYLE=posix-long-iso
!   export TIME_STYLE
! fi
! 
! save_arg1=$1
  
  # Find out how to get the extended ls output of a file or directory.
  if ls -L /dev/null 1>/dev/null 2>&1; then
Index: doc/texinfo.tex
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/texinfo.tex,v
retrieving revision 1.192
retrieving revision 1.193
diff -c -r1.192 -r1.193
*** doc/texinfo.tex     1 Jul 2005 06:26:47 -0000       1.192
--- doc/texinfo.tex     1 Jul 2005 13:12:01 -0000       1.193
***************
*** 3,9 ****
  % Load plain if necessary, i.e., if running under initex.
  \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
  %
! \def\texinfoversion{2005-06-10.07}
  %
  % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
  % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software
--- 3,9 ----
  % Load plain if necessary, i.e., if running under initex.
  \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
  %
! \def\texinfoversion{2005-07-01.06}
  %
  % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
  % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software
P config.sub
P mkinstalldirs
P doc/mdate-sh
P doc/texinfo.tex


reply via email to

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