From c594baa5526ddf04e34bc0076f52a5d98b1c5370 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 5 May 1998 20:39:58 +0000 Subject: [PATCH] Avoid using dirname; sed can do this just as well... --- install-sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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