texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Sun Jul 10 08:52:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Sun Jul 10 08:52:01 EDT 2005)
Date: Sun, 10 Jul 2005 08:52:15 -0400

Index: depcomp
===================================================================
RCS file: /cvsroot/texinfo/texinfo/depcomp,v
retrieving revision 1.13
retrieving revision 1.14
diff -c -r1.13 -r1.14
*** depcomp     15 May 2005 13:05:23 -0000      1.13
--- depcomp     10 Jul 2005 12:41:26 -0000      1.14
***************
*** 1,7 ****
  #! /bin/sh
  # depcomp - compile a program generating dependencies as side-effects
  
! scriptversion=2005-05-14.22
  
  # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
  
--- 1,7 ----
  #! /bin/sh
  # depcomp - compile a program generating dependencies as side-effects
  
! scriptversion=2005-07-09.11
  
  # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
  
***************
*** 467,473 ****
    done
  
    "$@" -E |
!     sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
      sed '$ s: \\$::' > "$tmpdepfile"
    rm -f "$depfile"
    echo "$object : \\" > "$depfile"
--- 467,474 ----
    done
  
    "$@" -E |
!     sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
!        -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
      sed '$ s: \\$::' > "$tmpdepfile"
    rm -f "$depfile"
    echo "$object : \\" > "$depfile"
Index: install-sh
===================================================================
RCS file: /cvsroot/texinfo/texinfo/install-sh,v
retrieving revision 1.13
retrieving revision 1.14
diff -c -r1.13 -r1.14
*** install-sh  15 May 2005 13:05:23 -0000      1.13
--- install-sh  10 Jul 2005 12:41:26 -0000      1.14
***************
*** 1,7 ****
  #!/bin/sh
  # install - install a program, script, or datafile
  
! scriptversion=2005-05-14.22
  
  # 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-07-09.12
  
  # This originates from X11R5 (mit/util/scripts/install.sh), which was
  # later released in X11R6 (xc/config/util/install.sh) with the
***************
*** 219,246 ****
  
    # Skip lots of stat calls in the usual case.
    if test ! -d "$dstdir"; then
!     defaultIFS='
!        '
!     IFS="${IFS-$defaultIFS}"
! 
      oIFS=$IFS
!     # Some sh's can't handle IFS=/ for some reason.
!     IFS='%'
!     set x `echo "$dstdir" | sed -e 's@/@address@hidden' -e 
'address@hidden@/@'`
      shift
      IFS=$oIFS
  
!     pathcomp=
  
!     while test $# -ne 0 ; do
!       pathcomp=$pathcomp$1
!       shift
        if test ! -d "$pathcomp"; then
          $mkdirprog "$pathcomp"
        # mkdir can fail with a `File exist' error in case several
        # install-sh are creating the directory concurrently.  This
        # is OK.
!       test -d "$pathcomp" || exit
        fi
        pathcomp=$pathcomp/
      done
--- 219,246 ----
  
    # Skip lots of stat calls in the usual case.
    if test ! -d "$dstdir"; then
!     case $dstdir in
!       /*) pathcomp=/ ;;
!       -*) pathcomp=./ ;;
!       *)  pathcomp= ;;
!     esac
      oIFS=$IFS
!     IFS=/
!     set fnord $dstdir
      shift
      IFS=$oIFS
  
!     for d
!     do
!       test "x$d" = x && continue
  
!       pathcomp=$pathcomp$d
        if test ! -d "$pathcomp"; then
          $mkdirprog "$pathcomp"
        # mkdir can fail with a `File exist' error in case several
        # install-sh are creating the directory concurrently.  This
        # is OK.
!       test -d "$pathcomp" || exit 1
        fi
        pathcomp=$pathcomp/
      done
P depcomp
P install-sh


reply via email to

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