summaryrefslogtreecommitdiff
path: root/scripts/build
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-10-03 15:09:18 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-10-03 15:09:18 (GMT)
commitc3b2d932d8d4dd5b89de505a724f3fc42600e456 (patch)
treed801abac51d26ca83014b29c27b6af8a58e71b4a /scripts/build
parent947df3a503aa3c0dc8b6ad3cfa37f5f8b076e984 (diff)
debug/gdb: cleanup (remove) the static ncurses build
ncurses is built solely for the sake of building a native gdb. The user should not rely on this library to build his/her userland, but should rather build his/her own. So we remove it from the sysroot after we successfully build the native gdb.
Diffstat (limited to 'scripts/build')
-rw-r--r--scripts/build/debug/300-gdb.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh
index 9207ca7..d9f2439 100644
--- a/scripts/build/debug/300-gdb.sh
+++ b/scripts/build/debug/300-gdb.sh
@@ -265,6 +265,10 @@ do_debug_gdb_build() {
unset ac_cv_func_strncmp_works
+ CT_DoLog EXTRA "Cleaning up ncurses"
+ cd "${CT_BUILD_DIR}/build-ncurses"
+ CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" uninstall
+
CT_EndStep # native gdb build
fi