texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Sun Feb 6 08:22:01 EST 2005)


From: Karl Berry
Subject: texinfo update (Sun Feb 6 08:22:01 EST 2005)
Date: Sun, 06 Feb 2005 08:22:18 -0500

Index: depcomp
===================================================================
RCS file: /cvsroot/texinfo/texinfo/depcomp,v
retrieving revision 1.10
retrieving revision 1.11
diff -c -r1.10 -r1.11
*** depcomp     2 Jun 2004 12:42:59 -0000       1.10
--- depcomp     6 Feb 2005 13:09:39 -0000       1.11
***************
*** 1,9 ****
  #! /bin/sh
  # depcomp - compile a program generating dependencies as side-effects
  
! scriptversion=2004-05-31.23
  
! # Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
  
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License as published by
--- 1,9 ----
  #! /bin/sh
  # depcomp - compile a program generating dependencies as side-effects
  
! scriptversion=2005-02-02.21
  
! # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
  
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License as published by
***************
*** 50,60 ****
  
  Report bugs to <address@hidden>.
  EOF
!     exit 0
      ;;
    -v | --v*)
      echo "depcomp $scriptversion"
!     exit 0
      ;;
  esac
  
--- 50,60 ----
  
  Report bugs to <address@hidden>.
  EOF
!     exit $?
      ;;
    -v | --v*)
      echo "depcomp $scriptversion"
!     exit $?
      ;;
  esac
  
Index: install-sh
===================================================================
RCS file: /cvsroot/texinfo/texinfo/install-sh,v
retrieving revision 1.11
retrieving revision 1.12
diff -c -r1.11 -r1.12
*** install-sh  18 Dec 2004 13:13:28 -0000      1.11
--- install-sh  6 Feb 2005 13:09:41 -0000       1.12
***************
*** 1,7 ****
  #!/bin/sh
  # install - install a program, script, or datafile
  
! scriptversion=2004-12-17.09
  
  # This originates from X11R5 (mit/util/scripts/install.sh), which was
  # later released in X11R6 (xc/config/util/install.sh) with the
--- 1,7 ----
  #!/bin/sh
  # install - install a program, script, or datafile
  
! scriptversion=2005-02-02.21
  
  # This originates from X11R5 (mit/util/scripts/install.sh), which was
  # later released in X11R6 (xc/config/util/install.sh) with the
***************
*** 109,115 ****
          shift
          continue;;
  
!     --help) echo "$usage"; exit 0;;
  
      -m) chmodcmd="$chmodprog $2"
          shift
--- 109,115 ----
          shift
          continue;;
  
!     --help) echo "$usage"; exit $?;;
  
      -m) chmodcmd="$chmodprog $2"
          shift
***************
*** 134,140 ****
        shift
        continue;;
  
!     --version) echo "$0 $scriptversion"; exit 0;;
  
      *)  # When -d is used, all remaining arguments are directories to create.
        # When -t is used, the destination is already specified.
--- 134,140 ----
        shift
        continue;;
  
!     --version) echo "$0 $scriptversion"; exit $?;;
  
      *)  # When -d is used, all remaining arguments are directories to create.
        # When -t is used, the destination is already specified.
Index: missing
===================================================================
RCS file: /cvsroot/texinfo/texinfo/missing,v
retrieving revision 1.4
retrieving revision 1.5
diff -c -r1.4 -r1.5
*** missing     7 Sep 2004 12:51:40 -0000       1.4
--- missing     6 Feb 2005 13:09:41 -0000       1.5
***************
*** 1,9 ****
  #! /bin/sh
  # Common stub for a few missing GNU programs while installing.
  
! scriptversion=2004-09-07.08
  
! # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004
  #   Free Software Foundation, Inc.
  # Originally by Fran,cois Pinard <address@hidden>, 1996.
  
--- 1,9 ----
  #! /bin/sh
  # Common stub for a few missing GNU programs while installing.
  
! scriptversion=2005-02-02.21
  
! # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
  #   Free Software Foundation, Inc.
  # Originally by Fran,cois Pinard <address@hidden>, 1996.
  
***************
*** 87,98 ****
    yacc         create \`y.tab.[ch]', if possible, from existing .[ch]
  
  Send bug reports to <address@hidden>."
!     exit 0
      ;;
  
    -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
      echo "missing $scriptversion (GNU Automake)"
!     exit 0
      ;;
  
    -*)
--- 87,98 ----
    yacc         create \`y.tab.[ch]', if possible, from existing .[ch]
  
  Send bug reports to <address@hidden>."
!     exit $?
      ;;
  
    -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
      echo "missing $scriptversion (GNU Automake)"
!     exit $?
      ;;
  
    -*)
Index: mkinstalldirs
===================================================================
RCS file: /cvsroot/texinfo/texinfo/mkinstalldirs,v
retrieving revision 1.11
retrieving revision 1.12
diff -c -r1.11 -r1.12
*** mkinstalldirs       11 Apr 2004 17:56:45 -0000      1.11
--- mkinstalldirs       6 Feb 2005 13:09:41 -0000       1.12
***************
*** 1,7 ****
  #! /bin/sh
  # mkinstalldirs --- make directory hierarchy
  
! scriptversion=2004-02-15.20
  
  # Original author: Noah Friedman <address@hidden>
  # Created: 1993-05-16
--- 1,7 ----
  #! /bin/sh
  # mkinstalldirs --- make directory hierarchy
  
! scriptversion=2005-02-02.21
  
  # Original author: Noah Friedman <address@hidden>
  # Created: 1993-05-16
***************
*** 27,33 ****
    case $1 in
      -h | --help | --h*)         # -h for help
        echo "$usage"
!       exit 0
        ;;
      -m)                         # -m PERM arg
        shift
--- 27,33 ----
    case $1 in
      -h | --help | --h*)         # -h for help
        echo "$usage"
!       exit $?
        ;;
      -m)                         # -m PERM arg
        shift
***************
*** 37,43 ****
        ;;
      --version)
        echo "$0 $scriptversion"
!       exit 0
        ;;
      --)                         # stop option processing
        shift
--- 37,43 ----
        ;;
      --version)
        echo "$0 $scriptversion"
!       exit $?
        ;;
      --)                         # stop option processing
        shift
Index: doc/mdate-sh
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/mdate-sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -c -r1.5 -r1.6
*** doc/mdate-sh        12 Dec 2004 14:38:49 -0000      1.5
--- doc/mdate-sh        6 Feb 2005 13:09:41 -0000       1.6
***************
*** 1,9 ****
  #!/bin/sh
  # Get modification time of a file or directory and pretty-print it.
  
! scriptversion=2004-12-08.12
  
! # Copyright (C) 1995, 1996, 1997, 2003, 2004 Free Software Foundation, Inc.
  # written by Ulrich Drepper <address@hidden>, June 1995
  #
  # This program is free software; you can redistribute it and/or modify
--- 1,10 ----
  #!/bin/sh
  # Get modification time of a file or directory and pretty-print it.
  
! scriptversion=2005-02-02.22
  
! # Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005 Free Software
! # Foundation, Inc.
  # written by Ulrich Drepper <address@hidden>, June 1995
  #
  # This program is free software; you can redistribute it and/or modify
***************
*** 42,52 ****
  
  Report bugs to <address@hidden>.
  EOF
!     exit 0
      ;;
    -v | --v*)
      echo "mdate-sh $scriptversion"
!     exit 0
      ;;
  esac
  
--- 43,53 ----
  
  Report bugs to <address@hidden>.
  EOF
!     exit $?
      ;;
    -v | --v*)
      echo "mdate-sh $scriptversion"
!     exit $?
      ;;
  esac
  
P depcomp
P install-sh
P missing
P mkinstalldirs
P doc/mdate-sh


reply via email to

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