aboutsummaryrefslogtreecommitdiff
path: root/install-sh
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2003-08-17 23:05:55 +0000
committerBen Elliston <bje@gnu.org>2003-08-17 23:05:55 +0000
commit8c1451b2dc3c8b64da6eb45db166e91e180cd440 (patch)
treeb02d85f97ecc2453f7b03878f7f3250e98fa6b26 /install-sh
parent9be9665de1bb8c36f9d9835d442a6e0352336cfe (diff)
More trailing whitespace fixes.
Diffstat (limited to 'install-sh')
-rwxr-xr-xinstall-sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/install-sh b/install-sh
index e0421dd..7bc67a6 100755
--- a/install-sh
+++ b/install-sh
@@ -124,7 +124,7 @@ if [ x"$dir_arg" != x ]; then
else
# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
-# might cause directories to be created, which would be especially bad
+# might cause directories to be created, which would be especially bad
# if $src (and thus $dsttmp) contains '*'.
if [ -f $src -o -d $src ]
@@ -201,17 +201,17 @@ else
# If we're going to rename the final executable, determine the name now.
- if [ x"$transformarg" = x ]
+ if [ x"$transformarg" = x ]
then
dstfile=`basename $dst`
else
- dstfile=`basename $dst $transformbasename |
+ dstfile=`basename $dst $transformbasename |
sed $transformarg`$transformbasename
fi
# don't allow the sed command to completely eliminate the filename
- if [ x"$dstfile" = x ]
+ if [ x"$dstfile" = x ]
then
dstfile=`basename $dst`
else
@@ -242,7 +242,7 @@ else
# Now rename the file to the real destination.
$doit $rmcmd -f $dstdir/$dstfile &&
- $doit $mvcmd $dsttmp $dstdir/$dstfile
+ $doit $mvcmd $dsttmp $dstdir/$dstfile
fi &&