diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-10-30 00:23:51 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-10-30 00:23:51 +0100 |
commit | 79243c2f8df520a9e6743e224dbfe111a600c036 (patch) | |
tree | a10afceabe544efaa0d55c26c2b1f2d1f16258c9 | |
parent | 35f55a749584be11c424cc9bda779283d326dfff (diff) | |
download | crosstool-ng-79243c2f8df520a9e6743e224dbfe111a600c036.tar.gz crosstool-ng-79243c2f8df520a9e6743e224dbfe111a600c036.tar.bz2 crosstool-ng-79243c2f8df520a9e6743e224dbfe111a600c036.zip |
debug/gdb: remove ncurses cleanup
That's legacy code that was usefull when ncurses was installed
in the sysroot. Still it's not longer the case (it's installed
in a special dedicated directory), we can remove that piece of
code.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index 22fcfece..6c763344 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -357,15 +357,6 @@ do_debug_gdb_build() { unset ac_cv_func_strncmp_works - # GDB on Mingw depends on PDcurses, not ncurses - if [ "${CT_MINGW32}" != "y" ]; then - CT_DoLog EXTRA "Cleaning up ncurses" - cd "${CT_BUILD_DIR}/build-ncurses" - CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" uninstall - - CT_DoExecLog DEBUG rm -rf "${CT_BUILD_DIR}/ncurses" - fi - CT_EndStep # native gdb build fi |