diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-18 13:21:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-18 13:21:05 +0000 |
commit | 2b5eb31b814a9e3d63f35751e46896591285def0 (patch) | |
tree | 4db132983ef28ccb79263a031057b8d77fb03ec1 /config/install-sh | |
parent | efa649366204c19c99b5284e4af553acfbad3ce6 (diff) | |
download | coreutils-2b5eb31b814a9e3d63f35751e46896591285def0.tar.xz |
update from upstream
Diffstat (limited to 'config/install-sh')
-rwxr-xr-x | config/install-sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/install-sh b/config/install-sh index e4f003959..2c1f8777b 100755 --- a/config/install-sh +++ b/config/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2003-05-09.19 +scriptversion=2003-06-13.21 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -230,8 +230,8 @@ else test -z "$dstfile" && dstfile=`basename "$dst"` # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/#inst.$$# - rmtmp=$dstdir/#rm.$$# + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0 |