diff options
author | Zhenqiang Chen <zhenqiang.chen@linaro.org> | 2012-09-20 11:20:16 +0800 |
---|---|---|
committer | Zhenqiang Chen <zhenqiang.chen@linaro.org> | 2012-09-20 11:20:16 +0800 |
commit | fd26fc9b1de1734097d5d0c169e1fa5c40d6ad26 (patch) | |
tree | 9168a61d03f0a13217720d6feb99df86f483213e | |
parent | 8ab3a18e21355302a7cc7302259da322ea2467c8 (diff) | |
download | crosstool-ng-fd26fc9b1de1734097d5d0c169e1fa5c40d6ad26.tar.gz crosstool-ng-fd26fc9b1de1734097d5d0c169e1fa5c40d6ad26.tar.bz2 crosstool-ng-fd26fc9b1de1734097d5d0c169e1fa5c40d6ad26.zip |
scripts: Use ${CT_TARGET}-strip to strip gdbserver
Signed-off-by: Zhenqiang Chen <zhenqiang.chen@linaro.org>
[yann.morin.1998@free.fr: quote variables]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <CACgzC7BU9CPZ2cE+EYqnMe2WNz-wYby6f4tsmjJi715WmPmbWw@mail.gmail.com>
PatchWork-Id: 185303
-rw-r--r-- | scripts/build/internals.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/internals.sh b/scripts/build/internals.sh index 8cb3753a..c7eb4c80 100644 --- a/scripts/build/internals.sh +++ b/scripts/build/internals.sh @@ -25,8 +25,8 @@ do_finish() { # Strip gdbserver if [ "${CT_GDB_GDBSERVER}" = "y" ]; then - CT_DoExecLog ALL bin/${CT_TARGET}-strip ${strip_args} \ - ${CT_TARGET}/debug-root/usr/bin/gdbserver + CT_DoExecLog ALL "${CT_TARGET}-strip" ${strip_args} \ + "${CT_TARGET}/debug-root/usr/bin/gdbserver" fi # We can not use the version in CT_CC_VERSION because # of the Linaro stuff. So, harvest the version string |