diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-04-29 22:14:31 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-04-29 22:14:31 +0200 |
commit | c4e987288eb3fe3a04d7881b5ff5890c5b4c756b (patch) | |
tree | 254f8dea95deb4679afe752717ab6cd724304428 | |
parent | 3fda8a4876a376fb8670c47df0554b31b4fa294f (diff) | |
download | crosstool-ng-c4e987288eb3fe3a04d7881b5ff5890c5b4c756b.tar.gz crosstool-ng-c4e987288eb3fe3a04d7881b5ff5890c5b4c756b.tar.bz2 crosstool-ng-c4e987288eb3fe3a04d7881b5ff5890c5b4c756b.zip |
debug/gdb: install tic in the buildtools directory
'tic' is a build tool, its place is in the buildtools
directory, not in the toolchain's bin directory.
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index a38470c6..20a36d02 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -155,7 +155,7 @@ do_debug_gdb_build() { CT_DoExecLog ALL make ${PARALLELMFLAGS} -C progs "tic${tic_ext}" CT_DoExecLog ALL install -d -m 0755 "${CT_PREFIX_DIR}/bin" - CT_DoExecLog ALL install -m 0755 "progs/tic${tic_ext}" "${CT_PREFIX_DIR}/bin" + CT_DoExecLog ALL install -m 0755 "progs/tic${tic_ext}" "${CT_PREFIX_DIR}/buildtools" mkdir -p "${CT_BUILD_DIR}/build-ncurses" cd "${CT_BUILD_DIR}/build-ncurses" |