diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-07-01 01:17:01 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-07-01 01:17:01 +0200 |
commit | e8a36ea13c2abc15a4055030b953330d9d94ccdb (patch) | |
tree | 9b549d4c6c9a5948c170d30a6d010a542a917734 | |
parent | 82766493f5562a62ae1f4d227532924aeba6e1d4 (diff) | |
download | crosstool-ng-e8a36ea13c2abc15a4055030b953330d9d94ccdb.tar.gz crosstool-ng-e8a36ea13c2abc15a4055030b953330d9d94ccdb.tar.bz2 crosstool-ng-e8a36ea13c2abc15a4055030b953330d9d94ccdb.zip |
debug/gdb: fix incorrect path
Fix discrepancy between the directory we create,
and the directory into which we install tic.
-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 20a36d02..3fd3312e 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -154,7 +154,7 @@ do_debug_gdb_build() { CT_DoExecLog ALL make ${PARALLELMFLAGS} -C include 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 -d -m 0755 "${CT_PREFIX_DIR}/buildtools" CT_DoExecLog ALL install -m 0755 "progs/tic${tic_ext}" "${CT_PREFIX_DIR}/buildtools" mkdir -p "${CT_BUILD_DIR}/build-ncurses" |