diff options
author | David D. Zuhn <zoo@cygnus> | 1993-06-18 18:18:12 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1993-06-18 18:18:12 +0000 |
commit | 1a4874f78f3af581951a103a015b33f73a72b310 (patch) | |
tree | cef2aa690da4eb4206fb425110704f0d7ef93420 /install.sh | |
parent | 394d1b3f0dcab5158b623e53381186286df6ff57 (diff) | |
download | binutils-gdb-1a4874f78f3af581951a103a015b33f73a72b310.tar.gz |
append transformbasename to transformed name
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh index c12763f2ac3..710497a637e 100755 --- a/install.sh +++ b/install.sh @@ -152,7 +152,7 @@ if [ x"$transformarg" = x ] then dstfile=`basename $dst` else - dstfile=`basename $dst $transformbasename | sed $transformarg` + dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename fi # don't allow the sed command to completely eliminate the filename |