annotate src/fftw-3.3.3/install-sh @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 89f5e221ed7b
children
rev   line source
cannam@95 1 #!/bin/sh
cannam@95 2 # install - install a program, script, or datafile
cannam@95 3
cannam@95 4 scriptversion=2011-01-19.21; # UTC
cannam@95 5
cannam@95 6 # This originates from X11R5 (mit/util/scripts/install.sh), which was
cannam@95 7 # later released in X11R6 (xc/config/util/install.sh) with the
cannam@95 8 # following copyright and license.
cannam@95 9 #
cannam@95 10 # Copyright (C) 1994 X Consortium
cannam@95 11 #
cannam@95 12 # Permission is hereby granted, free of charge, to any person obtaining a copy
cannam@95 13 # of this software and associated documentation files (the "Software"), to
cannam@95 14 # deal in the Software without restriction, including without limitation the
cannam@95 15 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
cannam@95 16 # sell copies of the Software, and to permit persons to whom the Software is
cannam@95 17 # furnished to do so, subject to the following conditions:
cannam@95 18 #
cannam@95 19 # The above copyright notice and this permission notice shall be included in
cannam@95 20 # all copies or substantial portions of the Software.
cannam@95 21 #
cannam@95 22 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
cannam@95 23 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
cannam@95 24 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
cannam@95 25 # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
cannam@95 26 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
cannam@95 27 # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
cannam@95 28 #
cannam@95 29 # Except as contained in this notice, the name of the X Consortium shall not
cannam@95 30 # be used in advertising or otherwise to promote the sale, use or other deal-
cannam@95 31 # ings in this Software without prior written authorization from the X Consor-
cannam@95 32 # tium.
cannam@95 33 #
cannam@95 34 #
cannam@95 35 # FSF changes to this file are in the public domain.
cannam@95 36 #
cannam@95 37 # Calling this script install-sh is preferred over install.sh, to prevent
cannam@95 38 # `make' implicit rules from creating a file called install from it
cannam@95 39 # when there is no Makefile.
cannam@95 40 #
cannam@95 41 # This script is compatible with the BSD install script, but was written
cannam@95 42 # from scratch.
cannam@95 43
cannam@95 44 nl='
cannam@95 45 '
cannam@95 46 IFS=" "" $nl"
cannam@95 47
cannam@95 48 # set DOITPROG to echo to test this script
cannam@95 49
cannam@95 50 # Don't use :- since 4.3BSD and earlier shells don't like it.
cannam@95 51 doit=${DOITPROG-}
cannam@95 52 if test -z "$doit"; then
cannam@95 53 doit_exec=exec
cannam@95 54 else
cannam@95 55 doit_exec=$doit
cannam@95 56 fi
cannam@95 57
cannam@95 58 # Put in absolute file names if you don't have them in your path;
cannam@95 59 # or use environment vars.
cannam@95 60
cannam@95 61 chgrpprog=${CHGRPPROG-chgrp}
cannam@95 62 chmodprog=${CHMODPROG-chmod}
cannam@95 63 chownprog=${CHOWNPROG-chown}
cannam@95 64 cmpprog=${CMPPROG-cmp}
cannam@95 65 cpprog=${CPPROG-cp}
cannam@95 66 mkdirprog=${MKDIRPROG-mkdir}
cannam@95 67 mvprog=${MVPROG-mv}
cannam@95 68 rmprog=${RMPROG-rm}
cannam@95 69 stripprog=${STRIPPROG-strip}
cannam@95 70
cannam@95 71 posix_glob='?'
cannam@95 72 initialize_posix_glob='
cannam@95 73 test "$posix_glob" != "?" || {
cannam@95 74 if (set -f) 2>/dev/null; then
cannam@95 75 posix_glob=
cannam@95 76 else
cannam@95 77 posix_glob=:
cannam@95 78 fi
cannam@95 79 }
cannam@95 80 '
cannam@95 81
cannam@95 82 posix_mkdir=
cannam@95 83
cannam@95 84 # Desired mode of installed file.
cannam@95 85 mode=0755
cannam@95 86
cannam@95 87 chgrpcmd=
cannam@95 88 chmodcmd=$chmodprog
cannam@95 89 chowncmd=
cannam@95 90 mvcmd=$mvprog
cannam@95 91 rmcmd="$rmprog -f"
cannam@95 92 stripcmd=
cannam@95 93
cannam@95 94 src=
cannam@95 95 dst=
cannam@95 96 dir_arg=
cannam@95 97 dst_arg=
cannam@95 98
cannam@95 99 copy_on_change=false
cannam@95 100 no_target_directory=
cannam@95 101
cannam@95 102 usage="\
cannam@95 103 Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
cannam@95 104 or: $0 [OPTION]... SRCFILES... DIRECTORY
cannam@95 105 or: $0 [OPTION]... -t DIRECTORY SRCFILES...
cannam@95 106 or: $0 [OPTION]... -d DIRECTORIES...
cannam@95 107
cannam@95 108 In the 1st form, copy SRCFILE to DSTFILE.
cannam@95 109 In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
cannam@95 110 In the 4th, create DIRECTORIES.
cannam@95 111
cannam@95 112 Options:
cannam@95 113 --help display this help and exit.
cannam@95 114 --version display version info and exit.
cannam@95 115
cannam@95 116 -c (ignored)
cannam@95 117 -C install only if different (preserve the last data modification time)
cannam@95 118 -d create directories instead of installing files.
cannam@95 119 -g GROUP $chgrpprog installed files to GROUP.
cannam@95 120 -m MODE $chmodprog installed files to MODE.
cannam@95 121 -o USER $chownprog installed files to USER.
cannam@95 122 -s $stripprog installed files.
cannam@95 123 -t DIRECTORY install into DIRECTORY.
cannam@95 124 -T report an error if DSTFILE is a directory.
cannam@95 125
cannam@95 126 Environment variables override the default commands:
cannam@95 127 CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
cannam@95 128 RMPROG STRIPPROG
cannam@95 129 "
cannam@95 130
cannam@95 131 while test $# -ne 0; do
cannam@95 132 case $1 in
cannam@95 133 -c) ;;
cannam@95 134
cannam@95 135 -C) copy_on_change=true;;
cannam@95 136
cannam@95 137 -d) dir_arg=true;;
cannam@95 138
cannam@95 139 -g) chgrpcmd="$chgrpprog $2"
cannam@95 140 shift;;
cannam@95 141
cannam@95 142 --help) echo "$usage"; exit $?;;
cannam@95 143
cannam@95 144 -m) mode=$2
cannam@95 145 case $mode in
cannam@95 146 *' '* | *' '* | *'
cannam@95 147 '* | *'*'* | *'?'* | *'['*)
cannam@95 148 echo "$0: invalid mode: $mode" >&2
cannam@95 149 exit 1;;
cannam@95 150 esac
cannam@95 151 shift;;
cannam@95 152
cannam@95 153 -o) chowncmd="$chownprog $2"
cannam@95 154 shift;;
cannam@95 155
cannam@95 156 -s) stripcmd=$stripprog;;
cannam@95 157
cannam@95 158 -t) dst_arg=$2
cannam@95 159 # Protect names problematic for `test' and other utilities.
cannam@95 160 case $dst_arg in
cannam@95 161 -* | [=\(\)!]) dst_arg=./$dst_arg;;
cannam@95 162 esac
cannam@95 163 shift;;
cannam@95 164
cannam@95 165 -T) no_target_directory=true;;
cannam@95 166
cannam@95 167 --version) echo "$0 $scriptversion"; exit $?;;
cannam@95 168
cannam@95 169 --) shift
cannam@95 170 break;;
cannam@95 171
cannam@95 172 -*) echo "$0: invalid option: $1" >&2
cannam@95 173 exit 1;;
cannam@95 174
cannam@95 175 *) break;;
cannam@95 176 esac
cannam@95 177 shift
cannam@95 178 done
cannam@95 179
cannam@95 180 if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
cannam@95 181 # When -d is used, all remaining arguments are directories to create.
cannam@95 182 # When -t is used, the destination is already specified.
cannam@95 183 # Otherwise, the last argument is the destination. Remove it from $@.
cannam@95 184 for arg
cannam@95 185 do
cannam@95 186 if test -n "$dst_arg"; then
cannam@95 187 # $@ is not empty: it contains at least $arg.
cannam@95 188 set fnord "$@" "$dst_arg"
cannam@95 189 shift # fnord
cannam@95 190 fi
cannam@95 191 shift # arg
cannam@95 192 dst_arg=$arg
cannam@95 193 # Protect names problematic for `test' and other utilities.
cannam@95 194 case $dst_arg in
cannam@95 195 -* | [=\(\)!]) dst_arg=./$dst_arg;;
cannam@95 196 esac
cannam@95 197 done
cannam@95 198 fi
cannam@95 199
cannam@95 200 if test $# -eq 0; then
cannam@95 201 if test -z "$dir_arg"; then
cannam@95 202 echo "$0: no input file specified." >&2
cannam@95 203 exit 1
cannam@95 204 fi
cannam@95 205 # It's OK to call `install-sh -d' without argument.
cannam@95 206 # This can happen when creating conditional directories.
cannam@95 207 exit 0
cannam@95 208 fi
cannam@95 209
cannam@95 210 if test -z "$dir_arg"; then
cannam@95 211 do_exit='(exit $ret); exit $ret'
cannam@95 212 trap "ret=129; $do_exit" 1
cannam@95 213 trap "ret=130; $do_exit" 2
cannam@95 214 trap "ret=141; $do_exit" 13
cannam@95 215 trap "ret=143; $do_exit" 15
cannam@95 216
cannam@95 217 # Set umask so as not to create temps with too-generous modes.
cannam@95 218 # However, 'strip' requires both read and write access to temps.
cannam@95 219 case $mode in
cannam@95 220 # Optimize common cases.
cannam@95 221 *644) cp_umask=133;;
cannam@95 222 *755) cp_umask=22;;
cannam@95 223
cannam@95 224 *[0-7])
cannam@95 225 if test -z "$stripcmd"; then
cannam@95 226 u_plus_rw=
cannam@95 227 else
cannam@95 228 u_plus_rw='% 200'
cannam@95 229 fi
cannam@95 230 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
cannam@95 231 *)
cannam@95 232 if test -z "$stripcmd"; then
cannam@95 233 u_plus_rw=
cannam@95 234 else
cannam@95 235 u_plus_rw=,u+rw
cannam@95 236 fi
cannam@95 237 cp_umask=$mode$u_plus_rw;;
cannam@95 238 esac
cannam@95 239 fi
cannam@95 240
cannam@95 241 for src
cannam@95 242 do
cannam@95 243 # Protect names problematic for `test' and other utilities.
cannam@95 244 case $src in
cannam@95 245 -* | [=\(\)!]) src=./$src;;
cannam@95 246 esac
cannam@95 247
cannam@95 248 if test -n "$dir_arg"; then
cannam@95 249 dst=$src
cannam@95 250 dstdir=$dst
cannam@95 251 test -d "$dstdir"
cannam@95 252 dstdir_status=$?
cannam@95 253 else
cannam@95 254
cannam@95 255 # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
cannam@95 256 # might cause directories to be created, which would be especially bad
cannam@95 257 # if $src (and thus $dsttmp) contains '*'.
cannam@95 258 if test ! -f "$src" && test ! -d "$src"; then
cannam@95 259 echo "$0: $src does not exist." >&2
cannam@95 260 exit 1
cannam@95 261 fi
cannam@95 262
cannam@95 263 if test -z "$dst_arg"; then
cannam@95 264 echo "$0: no destination specified." >&2
cannam@95 265 exit 1
cannam@95 266 fi
cannam@95 267 dst=$dst_arg
cannam@95 268
cannam@95 269 # If destination is a directory, append the input filename; won't work
cannam@95 270 # if double slashes aren't ignored.
cannam@95 271 if test -d "$dst"; then
cannam@95 272 if test -n "$no_target_directory"; then
cannam@95 273 echo "$0: $dst_arg: Is a directory" >&2
cannam@95 274 exit 1
cannam@95 275 fi
cannam@95 276 dstdir=$dst
cannam@95 277 dst=$dstdir/`basename "$src"`
cannam@95 278 dstdir_status=0
cannam@95 279 else
cannam@95 280 # Prefer dirname, but fall back on a substitute if dirname fails.
cannam@95 281 dstdir=`
cannam@95 282 (dirname "$dst") 2>/dev/null ||
cannam@95 283 expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
cannam@95 284 X"$dst" : 'X\(//\)[^/]' \| \
cannam@95 285 X"$dst" : 'X\(//\)$' \| \
cannam@95 286 X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
cannam@95 287 echo X"$dst" |
cannam@95 288 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
cannam@95 289 s//\1/
cannam@95 290 q
cannam@95 291 }
cannam@95 292 /^X\(\/\/\)[^/].*/{
cannam@95 293 s//\1/
cannam@95 294 q
cannam@95 295 }
cannam@95 296 /^X\(\/\/\)$/{
cannam@95 297 s//\1/
cannam@95 298 q
cannam@95 299 }
cannam@95 300 /^X\(\/\).*/{
cannam@95 301 s//\1/
cannam@95 302 q
cannam@95 303 }
cannam@95 304 s/.*/./; q'
cannam@95 305 `
cannam@95 306
cannam@95 307 test -d "$dstdir"
cannam@95 308 dstdir_status=$?
cannam@95 309 fi
cannam@95 310 fi
cannam@95 311
cannam@95 312 obsolete_mkdir_used=false
cannam@95 313
cannam@95 314 if test $dstdir_status != 0; then
cannam@95 315 case $posix_mkdir in
cannam@95 316 '')
cannam@95 317 # Create intermediate dirs using mode 755 as modified by the umask.
cannam@95 318 # This is like FreeBSD 'install' as of 1997-10-28.
cannam@95 319 umask=`umask`
cannam@95 320 case $stripcmd.$umask in
cannam@95 321 # Optimize common cases.
cannam@95 322 *[2367][2367]) mkdir_umask=$umask;;
cannam@95 323 .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
cannam@95 324
cannam@95 325 *[0-7])
cannam@95 326 mkdir_umask=`expr $umask + 22 \
cannam@95 327 - $umask % 100 % 40 + $umask % 20 \
cannam@95 328 - $umask % 10 % 4 + $umask % 2
cannam@95 329 `;;
cannam@95 330 *) mkdir_umask=$umask,go-w;;
cannam@95 331 esac
cannam@95 332
cannam@95 333 # With -d, create the new directory with the user-specified mode.
cannam@95 334 # Otherwise, rely on $mkdir_umask.
cannam@95 335 if test -n "$dir_arg"; then
cannam@95 336 mkdir_mode=-m$mode
cannam@95 337 else
cannam@95 338 mkdir_mode=
cannam@95 339 fi
cannam@95 340
cannam@95 341 posix_mkdir=false
cannam@95 342 case $umask in
cannam@95 343 *[123567][0-7][0-7])
cannam@95 344 # POSIX mkdir -p sets u+wx bits regardless of umask, which
cannam@95 345 # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
cannam@95 346 ;;
cannam@95 347 *)
cannam@95 348 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
cannam@95 349 trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
cannam@95 350
cannam@95 351 if (umask $mkdir_umask &&
cannam@95 352 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
cannam@95 353 then
cannam@95 354 if test -z "$dir_arg" || {
cannam@95 355 # Check for POSIX incompatibilities with -m.
cannam@95 356 # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
cannam@95 357 # other-writeable bit of parent directory when it shouldn't.
cannam@95 358 # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
cannam@95 359 ls_ld_tmpdir=`ls -ld "$tmpdir"`
cannam@95 360 case $ls_ld_tmpdir in
cannam@95 361 d????-?r-*) different_mode=700;;
cannam@95 362 d????-?--*) different_mode=755;;
cannam@95 363 *) false;;
cannam@95 364 esac &&
cannam@95 365 $mkdirprog -m$different_mode -p -- "$tmpdir" && {
cannam@95 366 ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
cannam@95 367 test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
cannam@95 368 }
cannam@95 369 }
cannam@95 370 then posix_mkdir=:
cannam@95 371 fi
cannam@95 372 rmdir "$tmpdir/d" "$tmpdir"
cannam@95 373 else
cannam@95 374 # Remove any dirs left behind by ancient mkdir implementations.
cannam@95 375 rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
cannam@95 376 fi
cannam@95 377 trap '' 0;;
cannam@95 378 esac;;
cannam@95 379 esac
cannam@95 380
cannam@95 381 if
cannam@95 382 $posix_mkdir && (
cannam@95 383 umask $mkdir_umask &&
cannam@95 384 $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
cannam@95 385 )
cannam@95 386 then :
cannam@95 387 else
cannam@95 388
cannam@95 389 # The umask is ridiculous, or mkdir does not conform to POSIX,
cannam@95 390 # or it failed possibly due to a race condition. Create the
cannam@95 391 # directory the slow way, step by step, checking for races as we go.
cannam@95 392
cannam@95 393 case $dstdir in
cannam@95 394 /*) prefix='/';;
cannam@95 395 [-=\(\)!]*) prefix='./';;
cannam@95 396 *) prefix='';;
cannam@95 397 esac
cannam@95 398
cannam@95 399 eval "$initialize_posix_glob"
cannam@95 400
cannam@95 401 oIFS=$IFS
cannam@95 402 IFS=/
cannam@95 403 $posix_glob set -f
cannam@95 404 set fnord $dstdir
cannam@95 405 shift
cannam@95 406 $posix_glob set +f
cannam@95 407 IFS=$oIFS
cannam@95 408
cannam@95 409 prefixes=
cannam@95 410
cannam@95 411 for d
cannam@95 412 do
cannam@95 413 test X"$d" = X && continue
cannam@95 414
cannam@95 415 prefix=$prefix$d
cannam@95 416 if test -d "$prefix"; then
cannam@95 417 prefixes=
cannam@95 418 else
cannam@95 419 if $posix_mkdir; then
cannam@95 420 (umask=$mkdir_umask &&
cannam@95 421 $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
cannam@95 422 # Don't fail if two instances are running concurrently.
cannam@95 423 test -d "$prefix" || exit 1
cannam@95 424 else
cannam@95 425 case $prefix in
cannam@95 426 *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
cannam@95 427 *) qprefix=$prefix;;
cannam@95 428 esac
cannam@95 429 prefixes="$prefixes '$qprefix'"
cannam@95 430 fi
cannam@95 431 fi
cannam@95 432 prefix=$prefix/
cannam@95 433 done
cannam@95 434
cannam@95 435 if test -n "$prefixes"; then
cannam@95 436 # Don't fail if two instances are running concurrently.
cannam@95 437 (umask $mkdir_umask &&
cannam@95 438 eval "\$doit_exec \$mkdirprog $prefixes") ||
cannam@95 439 test -d "$dstdir" || exit 1
cannam@95 440 obsolete_mkdir_used=true
cannam@95 441 fi
cannam@95 442 fi
cannam@95 443 fi
cannam@95 444
cannam@95 445 if test -n "$dir_arg"; then
cannam@95 446 { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
cannam@95 447 { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
cannam@95 448 { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
cannam@95 449 test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
cannam@95 450 else
cannam@95 451
cannam@95 452 # Make a couple of temp file names in the proper directory.
cannam@95 453 dsttmp=$dstdir/_inst.$$_
cannam@95 454 rmtmp=$dstdir/_rm.$$_
cannam@95 455
cannam@95 456 # Trap to clean up those temp files at exit.
cannam@95 457 trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
cannam@95 458
cannam@95 459 # Copy the file name to the temp name.
cannam@95 460 (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
cannam@95 461
cannam@95 462 # and set any options; do chmod last to preserve setuid bits.
cannam@95 463 #
cannam@95 464 # If any of these fail, we abort the whole thing. If we want to
cannam@95 465 # ignore errors from any of these, just make sure not to ignore
cannam@95 466 # errors from the above "$doit $cpprog $src $dsttmp" command.
cannam@95 467 #
cannam@95 468 { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
cannam@95 469 { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
cannam@95 470 { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
cannam@95 471 { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
cannam@95 472
cannam@95 473 # If -C, don't bother to copy if it wouldn't change the file.
cannam@95 474 if $copy_on_change &&
cannam@95 475 old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
cannam@95 476 new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
cannam@95 477
cannam@95 478 eval "$initialize_posix_glob" &&
cannam@95 479 $posix_glob set -f &&
cannam@95 480 set X $old && old=:$2:$4:$5:$6 &&
cannam@95 481 set X $new && new=:$2:$4:$5:$6 &&
cannam@95 482 $posix_glob set +f &&
cannam@95 483
cannam@95 484 test "$old" = "$new" &&
cannam@95 485 $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
cannam@95 486 then
cannam@95 487 rm -f "$dsttmp"
cannam@95 488 else
cannam@95 489 # Rename the file to the real destination.
cannam@95 490 $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
cannam@95 491
cannam@95 492 # The rename failed, perhaps because mv can't rename something else
cannam@95 493 # to itself, or perhaps because mv is so ancient that it does not
cannam@95 494 # support -f.
cannam@95 495 {
cannam@95 496 # Now remove or move aside any old file at destination location.
cannam@95 497 # We try this two ways since rm can't unlink itself on some
cannam@95 498 # systems and the destination file might be busy for other
cannam@95 499 # reasons. In this case, the final cleanup might fail but the new
cannam@95 500 # file should still install successfully.
cannam@95 501 {
cannam@95 502 test ! -f "$dst" ||
cannam@95 503 $doit $rmcmd -f "$dst" 2>/dev/null ||
cannam@95 504 { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
cannam@95 505 { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
cannam@95 506 } ||
cannam@95 507 { echo "$0: cannot unlink or rename $dst" >&2
cannam@95 508 (exit 1); exit 1
cannam@95 509 }
cannam@95 510 } &&
cannam@95 511
cannam@95 512 # Now rename the file to the real destination.
cannam@95 513 $doit $mvcmd "$dsttmp" "$dst"
cannam@95 514 }
cannam@95 515 fi || exit 1
cannam@95 516
cannam@95 517 trap '' 0
cannam@95 518 fi
cannam@95 519 done
cannam@95 520
cannam@95 521 # Local variables:
cannam@95 522 # eval: (add-hook 'write-file-hooks 'time-stamp)
cannam@95 523 # time-stamp-start: "scriptversion="
cannam@95 524 # time-stamp-format: "%:y-%02m-%02d.%02H"
cannam@95 525 # time-stamp-time-zone: "UTC"
cannam@95 526 # time-stamp-end: "; # UTC"
cannam@95 527 # End: