Blame build-aux/install-sh

Packit a07778
#!/bin/sh
Packit a07778
# install - install a program, script, or datafile
Packit a07778
Packit a07778
scriptversion=2018-03-11.20; # UTC
Packit a07778
Packit a07778
# This originates from X11R5 (mit/util/scripts/install.sh), which was
Packit a07778
# later released in X11R6 (xc/config/util/install.sh) with the
Packit a07778
# following copyright and license.
Packit a07778
#
Packit a07778
# Copyright (C) 1994 X Consortium
Packit a07778
#
Packit a07778
# Permission is hereby granted, free of charge, to any person obtaining a copy
Packit a07778
# of this software and associated documentation files (the "Software"), to
Packit a07778
# deal in the Software without restriction, including without limitation the
Packit a07778
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
Packit a07778
# sell copies of the Software, and to permit persons to whom the Software is
Packit a07778
# furnished to do so, subject to the following conditions:
Packit a07778
#
Packit a07778
# The above copyright notice and this permission notice shall be included in
Packit a07778
# all copies or substantial portions of the Software.
Packit a07778
#
Packit a07778
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Packit a07778
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Packit a07778
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
Packit a07778
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
Packit a07778
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
Packit a07778
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit a07778
#
Packit a07778
# Except as contained in this notice, the name of the X Consortium shall not
Packit a07778
# be used in advertising or otherwise to promote the sale, use or other deal-
Packit a07778
# ings in this Software without prior written authorization from the X Consor-
Packit a07778
# tium.
Packit a07778
#
Packit a07778
#
Packit a07778
# FSF changes to this file are in the public domain.
Packit a07778
#
Packit a07778
# Calling this script install-sh is preferred over install.sh, to prevent
Packit a07778
# 'make' implicit rules from creating a file called install from it
Packit a07778
# when there is no Makefile.
Packit a07778
#
Packit a07778
# This script is compatible with the BSD install script, but was written
Packit a07778
# from scratch.
Packit a07778
Packit a07778
tab='	'
Packit a07778
nl='
Packit a07778
'
Packit a07778
IFS=" $tab$nl"
Packit a07778
Packit a07778
# Set DOITPROG to "echo" to test this script.
Packit a07778
Packit a07778
doit=${DOITPROG-}
Packit a07778
doit_exec=${doit:-exec}
Packit a07778
Packit a07778
# Put in absolute file names if you don't have them in your path;
Packit a07778
# or use environment vars.
Packit a07778
Packit a07778
chgrpprog=${CHGRPPROG-chgrp}
Packit a07778
chmodprog=${CHMODPROG-chmod}
Packit a07778
chownprog=${CHOWNPROG-chown}
Packit a07778
cmpprog=${CMPPROG-cmp}
Packit a07778
cpprog=${CPPROG-cp}
Packit a07778
mkdirprog=${MKDIRPROG-mkdir}
Packit a07778
mvprog=${MVPROG-mv}
Packit a07778
rmprog=${RMPROG-rm}
Packit a07778
stripprog=${STRIPPROG-strip}
Packit a07778
Packit a07778
posix_mkdir=
Packit a07778
Packit a07778
# Desired mode of installed file.
Packit a07778
mode=0755
Packit a07778
Packit a07778
chgrpcmd=
Packit a07778
chmodcmd=$chmodprog
Packit a07778
chowncmd=
Packit a07778
mvcmd=$mvprog
Packit a07778
rmcmd="$rmprog -f"
Packit a07778
stripcmd=
Packit a07778
Packit a07778
src=
Packit a07778
dst=
Packit a07778
dir_arg=
Packit a07778
dst_arg=
Packit a07778
Packit a07778
copy_on_change=false
Packit a07778
is_target_a_directory=possibly
Packit a07778
Packit a07778
usage="\
Packit a07778
Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
Packit a07778
   or: $0 [OPTION]... SRCFILES... DIRECTORY
Packit a07778
   or: $0 [OPTION]... -t DIRECTORY SRCFILES...
Packit a07778
   or: $0 [OPTION]... -d DIRECTORIES...
Packit a07778
Packit a07778
In the 1st form, copy SRCFILE to DSTFILE.
Packit a07778
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
Packit a07778
In the 4th, create DIRECTORIES.
Packit a07778
Packit a07778
Options:
Packit a07778
     --help     display this help and exit.
Packit a07778
     --version  display version info and exit.
Packit a07778
Packit a07778
  -c            (ignored)
Packit a07778
  -C            install only if different (preserve the last data modification time)
Packit a07778
  -d            create directories instead of installing files.
Packit a07778
  -g GROUP      $chgrpprog installed files to GROUP.
Packit a07778
  -m MODE       $chmodprog installed files to MODE.
Packit a07778
  -o USER       $chownprog installed files to USER.
Packit a07778
  -s            $stripprog installed files.
Packit a07778
  -t DIRECTORY  install into DIRECTORY.
Packit a07778
  -T            report an error if DSTFILE is a directory.
Packit a07778
Packit a07778
Environment variables override the default commands:
Packit a07778
  CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
Packit a07778
  RMPROG STRIPPROG
Packit a07778
"
Packit a07778
Packit a07778
while test $# -ne 0; do
Packit a07778
  case $1 in
Packit a07778
    -c) ;;
Packit a07778
Packit a07778
    -C) copy_on_change=true;;
Packit a07778
Packit a07778
    -d) dir_arg=true;;
Packit a07778
Packit a07778
    -g) chgrpcmd="$chgrpprog $2"
Packit a07778
        shift;;
Packit a07778
Packit a07778
    --help) echo "$usage"; exit $?;;
Packit a07778
Packit a07778
    -m) mode=$2
Packit a07778
        case $mode in
Packit a07778
          *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
Packit a07778
            echo "$0: invalid mode: $mode" >&2
Packit a07778
            exit 1;;
Packit a07778
        esac
Packit a07778
        shift;;
Packit a07778
Packit a07778
    -o) chowncmd="$chownprog $2"
Packit a07778
        shift;;
Packit a07778
Packit a07778
    -s) stripcmd=$stripprog;;
Packit a07778
Packit a07778
    -t)
Packit a07778
        is_target_a_directory=always
Packit a07778
        dst_arg=$2
Packit a07778
        # Protect names problematic for 'test' and other utilities.
Packit a07778
        case $dst_arg in
Packit a07778
          -* | [=\(\)!]) dst_arg=./$dst_arg;;
Packit a07778
        esac
Packit a07778
        shift;;
Packit a07778
Packit a07778
    -T) is_target_a_directory=never;;
Packit a07778
Packit a07778
    --version) echo "$0 $scriptversion"; exit $?;;
Packit a07778
Packit a07778
    --) shift
Packit a07778
        break;;
Packit a07778
Packit a07778
    -*) echo "$0: invalid option: $1" >&2
Packit a07778
        exit 1;;
Packit a07778
Packit a07778
    *)  break;;
Packit a07778
  esac
Packit a07778
  shift
Packit a07778
done
Packit a07778
Packit a07778
# We allow the use of options -d and -T together, by making -d
Packit a07778
# take the precedence; this is for compatibility with GNU install.
Packit a07778
Packit a07778
if test -n "$dir_arg"; then
Packit a07778
  if test -n "$dst_arg"; then
Packit a07778
    echo "$0: target directory not allowed when installing a directory." >&2
Packit a07778
    exit 1
Packit a07778
  fi
Packit a07778
fi
Packit a07778
Packit a07778
if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
Packit a07778
  # When -d is used, all remaining arguments are directories to create.
Packit a07778
  # When -t is used, the destination is already specified.
Packit a07778
  # Otherwise, the last argument is the destination.  Remove it from $@.
Packit a07778
  for arg
Packit a07778
  do
Packit a07778
    if test -n "$dst_arg"; then
Packit a07778
      # $@ is not empty: it contains at least $arg.
Packit a07778
      set fnord "$@" "$dst_arg"
Packit a07778
      shift # fnord
Packit a07778
    fi
Packit a07778
    shift # arg
Packit a07778
    dst_arg=$arg
Packit a07778
    # Protect names problematic for 'test' and other utilities.
Packit a07778
    case $dst_arg in
Packit a07778
      -* | [=\(\)!]) dst_arg=./$dst_arg;;
Packit a07778
    esac
Packit a07778
  done
Packit a07778
fi
Packit a07778
Packit a07778
if test $# -eq 0; then
Packit a07778
  if test -z "$dir_arg"; then
Packit a07778
    echo "$0: no input file specified." >&2
Packit a07778
    exit 1
Packit a07778
  fi
Packit a07778
  # It's OK to call 'install-sh -d' without argument.
Packit a07778
  # This can happen when creating conditional directories.
Packit a07778
  exit 0
Packit a07778
fi
Packit a07778
Packit a07778
if test -z "$dir_arg"; then
Packit a07778
  if test $# -gt 1 || test "$is_target_a_directory" = always; then
Packit a07778
    if test ! -d "$dst_arg"; then
Packit a07778
      echo "$0: $dst_arg: Is not a directory." >&2
Packit a07778
      exit 1
Packit a07778
    fi
Packit a07778
  fi
Packit a07778
fi
Packit a07778
Packit a07778
if test -z "$dir_arg"; then
Packit a07778
  do_exit='(exit $ret); exit $ret'
Packit a07778
  trap "ret=129; $do_exit" 1
Packit a07778
  trap "ret=130; $do_exit" 2
Packit a07778
  trap "ret=141; $do_exit" 13
Packit a07778
  trap "ret=143; $do_exit" 15
Packit a07778
Packit a07778
  # Set umask so as not to create temps with too-generous modes.
Packit a07778
  # However, 'strip' requires both read and write access to temps.
Packit a07778
  case $mode in
Packit a07778
    # Optimize common cases.
Packit a07778
    *644) cp_umask=133;;
Packit a07778
    *755) cp_umask=22;;
Packit a07778
Packit a07778
    *[0-7])
Packit a07778
      if test -z "$stripcmd"; then
Packit a07778
        u_plus_rw=
Packit a07778
      else
Packit a07778
        u_plus_rw='% 200'
Packit a07778
      fi
Packit a07778
      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
Packit a07778
    *)
Packit a07778
      if test -z "$stripcmd"; then
Packit a07778
        u_plus_rw=
Packit a07778
      else
Packit a07778
        u_plus_rw=,u+rw
Packit a07778
      fi
Packit a07778
      cp_umask=$mode$u_plus_rw;;
Packit a07778
  esac
Packit a07778
fi
Packit a07778
Packit a07778
for src
Packit a07778
do
Packit a07778
  # Protect names problematic for 'test' and other utilities.
Packit a07778
  case $src in
Packit a07778
    -* | [=\(\)!]) src=./$src;;
Packit a07778
  esac
Packit a07778
Packit a07778
  if test -n "$dir_arg"; then
Packit a07778
    dst=$src
Packit a07778
    dstdir=$dst
Packit a07778
    test -d "$dstdir"
Packit a07778
    dstdir_status=$?
Packit a07778
  else
Packit a07778
Packit a07778
    # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
Packit a07778
    # might cause directories to be created, which would be especially bad
Packit a07778
    # if $src (and thus $dsttmp) contains '*'.
Packit a07778
    if test ! -f "$src" && test ! -d "$src"; then
Packit a07778
      echo "$0: $src does not exist." >&2
Packit a07778
      exit 1
Packit a07778
    fi
Packit a07778
Packit a07778
    if test -z "$dst_arg"; then
Packit a07778
      echo "$0: no destination specified." >&2
Packit a07778
      exit 1
Packit a07778
    fi
Packit a07778
    dst=$dst_arg
Packit a07778
Packit a07778
    # If destination is a directory, append the input filename.
Packit a07778
    if test -d "$dst"; then
Packit a07778
      if test "$is_target_a_directory" = never; then
Packit a07778
        echo "$0: $dst_arg: Is a directory" >&2
Packit a07778
        exit 1
Packit a07778
      fi
Packit a07778
      dstdir=$dst
Packit a07778
      dstbase=`basename "$src"`
Packit a07778
      case $dst in
Packit a07778
	*/) dst=$dst$dstbase;;
Packit a07778
	*)  dst=$dst/$dstbase;;
Packit a07778
      esac
Packit a07778
      dstdir_status=0
Packit a07778
    else
Packit a07778
      dstdir=`dirname "$dst"`
Packit a07778
      test -d "$dstdir"
Packit a07778
      dstdir_status=$?
Packit a07778
    fi
Packit a07778
  fi
Packit a07778
Packit a07778
  case $dstdir in
Packit a07778
    */) dstdirslash=$dstdir;;
Packit a07778
    *)  dstdirslash=$dstdir/;;
Packit a07778
  esac
Packit a07778
Packit a07778
  obsolete_mkdir_used=false
Packit a07778
Packit a07778
  if test $dstdir_status != 0; then
Packit a07778
    case $posix_mkdir in
Packit a07778
      '')
Packit a07778
        # Create intermediate dirs using mode 755 as modified by the umask.
Packit a07778
        # This is like FreeBSD 'install' as of 1997-10-28.
Packit a07778
        umask=`umask`
Packit a07778
        case $stripcmd.$umask in
Packit a07778
          # Optimize common cases.
Packit a07778
          *[2367][2367]) mkdir_umask=$umask;;
Packit a07778
          .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
Packit a07778
Packit a07778
          *[0-7])
Packit a07778
            mkdir_umask=`expr $umask + 22 \
Packit a07778
              - $umask % 100 % 40 + $umask % 20 \
Packit a07778
              - $umask % 10 % 4 + $umask % 2
Packit a07778
            `;;
Packit a07778
          *) mkdir_umask=$umask,go-w;;
Packit a07778
        esac
Packit a07778
Packit a07778
        # With -d, create the new directory with the user-specified mode.
Packit a07778
        # Otherwise, rely on $mkdir_umask.
Packit a07778
        if test -n "$dir_arg"; then
Packit a07778
          mkdir_mode=-m$mode
Packit a07778
        else
Packit a07778
          mkdir_mode=
Packit a07778
        fi
Packit a07778
Packit a07778
        posix_mkdir=false
Packit a07778
        case $umask in
Packit a07778
          *[123567][0-7][0-7])
Packit a07778
            # POSIX mkdir -p sets u+wx bits regardless of umask, which
Packit a07778
            # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
Packit a07778
            ;;
Packit a07778
          *)
Packit a07778
            # Note that $RANDOM variable is not portable (e.g. dash);  Use it
Packit a07778
            # here however when possible just to lower collision chance.
Packit a07778
            tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
Packit a07778
Packit a07778
            trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0
Packit a07778
Packit a07778
            # Because "mkdir -p" follows existing symlinks and we likely work
Packit a07778
            # directly in world-writeable /tmp, make sure that the '$tmpdir'
Packit a07778
            # directory is successfully created first before we actually test
Packit a07778
            # 'mkdir -p' feature.
Packit a07778
            if (umask $mkdir_umask &&
Packit a07778
                $mkdirprog $mkdir_mode "$tmpdir" &&
Packit a07778
                exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
Packit a07778
            then
Packit a07778
              if test -z "$dir_arg" || {
Packit a07778
                   # Check for POSIX incompatibilities with -m.
Packit a07778
                   # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
Packit a07778
                   # other-writable bit of parent directory when it shouldn't.
Packit a07778
                   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
Packit a07778
                   test_tmpdir="$tmpdir/a"
Packit a07778
                   ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
Packit a07778
                   case $ls_ld_tmpdir in
Packit a07778
                     d????-?r-*) different_mode=700;;
Packit a07778
                     d????-?--*) different_mode=755;;
Packit a07778
                     *) false;;
Packit a07778
                   esac &&
Packit a07778
                   $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
Packit a07778
                     ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
Packit a07778
                     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
Packit a07778
                   }
Packit a07778
                 }
Packit a07778
              then posix_mkdir=:
Packit a07778
              fi
Packit a07778
              rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
Packit a07778
            else
Packit a07778
              # Remove any dirs left behind by ancient mkdir implementations.
Packit a07778
              rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
Packit a07778
            fi
Packit a07778
            trap '' 0;;
Packit a07778
        esac;;
Packit a07778
    esac
Packit a07778
Packit a07778
    if
Packit a07778
      $posix_mkdir && (
Packit a07778
        umask $mkdir_umask &&
Packit a07778
        $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
Packit a07778
      )
Packit a07778
    then :
Packit a07778
    else
Packit a07778
Packit a07778
      # The umask is ridiculous, or mkdir does not conform to POSIX,
Packit a07778
      # or it failed possibly due to a race condition.  Create the
Packit a07778
      # directory the slow way, step by step, checking for races as we go.
Packit a07778
Packit a07778
      case $dstdir in
Packit a07778
        /*) prefix='/';;
Packit a07778
        [-=\(\)!]*) prefix='./';;
Packit a07778
        *)  prefix='';;
Packit a07778
      esac
Packit a07778
Packit a07778
      oIFS=$IFS
Packit a07778
      IFS=/
Packit a07778
      set -f
Packit a07778
      set fnord $dstdir
Packit a07778
      shift
Packit a07778
      set +f
Packit a07778
      IFS=$oIFS
Packit a07778
Packit a07778
      prefixes=
Packit a07778
Packit a07778
      for d
Packit a07778
      do
Packit a07778
        test X"$d" = X && continue
Packit a07778
Packit a07778
        prefix=$prefix$d
Packit a07778
        if test -d "$prefix"; then
Packit a07778
          prefixes=
Packit a07778
        else
Packit a07778
          if $posix_mkdir; then
Packit a07778
            (umask=$mkdir_umask &&
Packit a07778
             $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
Packit a07778
            # Don't fail if two instances are running concurrently.
Packit a07778
            test -d "$prefix" || exit 1
Packit a07778
          else
Packit a07778
            case $prefix in
Packit a07778
              *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
Packit a07778
              *) qprefix=$prefix;;
Packit a07778
            esac
Packit a07778
            prefixes="$prefixes '$qprefix'"
Packit a07778
          fi
Packit a07778
        fi
Packit a07778
        prefix=$prefix/
Packit a07778
      done
Packit a07778
Packit a07778
      if test -n "$prefixes"; then
Packit a07778
        # Don't fail if two instances are running concurrently.
Packit a07778
        (umask $mkdir_umask &&
Packit a07778
         eval "\$doit_exec \$mkdirprog $prefixes") ||
Packit a07778
          test -d "$dstdir" || exit 1
Packit a07778
        obsolete_mkdir_used=true
Packit a07778
      fi
Packit a07778
    fi
Packit a07778
  fi
Packit a07778
Packit a07778
  if test -n "$dir_arg"; then
Packit a07778
    { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
Packit a07778
    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
Packit a07778
    { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
Packit a07778
      test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
Packit a07778
  else
Packit a07778
Packit a07778
    # Make a couple of temp file names in the proper directory.
Packit a07778
    dsttmp=${dstdirslash}_inst.$$_
Packit a07778
    rmtmp=${dstdirslash}_rm.$$_
Packit a07778
Packit a07778
    # Trap to clean up those temp files at exit.
Packit a07778
    trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
Packit a07778
Packit a07778
    # Copy the file name to the temp name.
Packit a07778
    (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
Packit a07778
Packit a07778
    # and set any options; do chmod last to preserve setuid bits.
Packit a07778
    #
Packit a07778
    # If any of these fail, we abort the whole thing.  If we want to
Packit a07778
    # ignore errors from any of these, just make sure not to ignore
Packit a07778
    # errors from the above "$doit $cpprog $src $dsttmp" command.
Packit a07778
    #
Packit a07778
    { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
Packit a07778
    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
Packit a07778
    { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
Packit a07778
    { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
Packit a07778
Packit a07778
    # If -C, don't bother to copy if it wouldn't change the file.
Packit a07778
    if $copy_on_change &&
Packit a07778
       old=`LC_ALL=C ls -dlL "$dst"     2>/dev/null` &&
Packit a07778
       new=`LC_ALL=C ls -dlL "$dsttmp"  2>/dev/null` &&
Packit a07778
       set -f &&
Packit a07778
       set X $old && old=:$2:$4:$5:$6 &&
Packit a07778
       set X $new && new=:$2:$4:$5:$6 &&
Packit a07778
       set +f &&
Packit a07778
       test "$old" = "$new" &&
Packit a07778
       $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
Packit a07778
    then
Packit a07778
      rm -f "$dsttmp"
Packit a07778
    else
Packit a07778
      # Rename the file to the real destination.
Packit a07778
      $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
Packit a07778
Packit a07778
      # The rename failed, perhaps because mv can't rename something else
Packit a07778
      # to itself, or perhaps because mv is so ancient that it does not
Packit a07778
      # support -f.
Packit a07778
      {
Packit a07778
        # Now remove or move aside any old file at destination location.
Packit a07778
        # We try this two ways since rm can't unlink itself on some
Packit a07778
        # systems and the destination file might be busy for other
Packit a07778
        # reasons.  In this case, the final cleanup might fail but the new
Packit a07778
        # file should still install successfully.
Packit a07778
        {
Packit a07778
          test ! -f "$dst" ||
Packit a07778
          $doit $rmcmd -f "$dst" 2>/dev/null ||
Packit a07778
          { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
Packit a07778
            { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
Packit a07778
          } ||
Packit a07778
          { echo "$0: cannot unlink or rename $dst" >&2
Packit a07778
            (exit 1); exit 1
Packit a07778
          }
Packit a07778
        } &&
Packit a07778
Packit a07778
        # Now rename the file to the real destination.
Packit a07778
        $doit $mvcmd "$dsttmp" "$dst"
Packit a07778
      }
Packit a07778
    fi || exit 1
Packit a07778
Packit a07778
    trap '' 0
Packit a07778
  fi
Packit a07778
done
Packit a07778
Packit a07778
# Local variables:
Packit a07778
# eval: (add-hook 'before-save-hook 'time-stamp)
Packit a07778
# time-stamp-start: "scriptversion="
Packit a07778
# time-stamp-format: "%:y-%02m-%02d.%02H"
Packit a07778
# time-stamp-time-zone: "UTC0"
Packit a07778
# time-stamp-end: "; # UTC"
Packit a07778
# End: