diff --git a/install-sh b/install-sh index 0ff4b6a08e8..98204c558a5 100755 --- a/install-sh +++ b/install-sh @@ -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