diff options
Diffstat (limited to 'install-sh')
-rwxr-xr-x | install-sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |