Avoid using dirname; sed can do this just as well...

This commit is contained in:
Guido van Rossum 1998-05-05 20:39:58 +00:00
parent e0c0da98d8
commit c594baa552

View file

@ -96,7 +96,8 @@ fi
# Make a temp file name in the proper directory.
dstdir=`dirname $dst`
# Avoid dirname, which doesn't exist everywhere...
dstdir=`echo $dst | sed 's,/[^/]*$,,'`
dsttmp=$dstdir/#inst.$$#
# Move or copy the file name to the temp name