diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-03-16 23:10:46 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-03-16 23:10:46 +0100 |
commit | 7e7523f28c45868e97aa47b9074f63681a89bb60 (patch) | |
tree | c6e34c0b1efbc09e0389f0c1ace066aaccc8c774 | |
parent | 4b6642944a9fd62615fef5c5366096ba065ad7b7 (diff) | |
download | crosstool-ng-7e7523f28c45868e97aa47b9074f63681a89bb60.tar.gz crosstool-ng-7e7523f28c45868e97aa47b9074f63681a89bb60.tar.bz2 crosstool-ng-7e7523f28c45868e97aa47b9074f63681a89bb60.zip |
debug/gdb: fix building the native tic
The native 'tic' will _always_ be run on the build
machine, so no need to handle canadian/native/...
Reported by: Trevor Woerner
http://sourceware.org/ml/crossgcc/2010-03/msg00055.html
-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 ebe0965e..7d0f4d06 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -161,7 +161,7 @@ do_debug_gdb_build() { # tools instead of searching for the native ones... CT_DoExecLog ALL \ "${CT_SRC_DIR}/ncurses-${CT_DEBUG_GDB_NCURSES_VERSION}/configure" \ - --build=${CT_REAL_BUILD} \ + --build=${CT_BUILD} \ --host=${CT_BUILD} \ --prefix=/usr \ --without-shared \ |