summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-04-29 20:12:27 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-04-29 20:12:27 (GMT)
commit3fda8a4876a376fb8670c47df0554b31b4fa294f (patch)
treef6a2751feea32fd2f79b0d6013f6f1ca70922f94
parent9997da0725e0682e0a27084b03914254b2b256bd (diff)
debug/gdb: be less verbose during the ncurses build
-rw-r--r--scripts/build/debug/300-gdb.sh13
1 files changed, 1 insertions, 12 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh
index ffc23d9..a38470c 100644
--- a/scripts/build/debug/300-gdb.sh
+++ b/scripts/build/debug/300-gdb.sh
@@ -124,13 +124,11 @@ do_debug_gdb_build() {
CT_DoStep INFO "Installing native gdb"
- CT_DoStep INFO "Installing ncurses library"
+ CT_DoLog EXTRA "Building static target ncurses"
[ "${CT_CC_LANG_CXX}" = "y" ] || ncurses_opts+=("--without-cxx" "--without-cxx-binding")
[ "${CT_CC_LANG_ADA}" = "y" ] || ncurses_opts+=("--without-ada")
- CT_DoStep INFO "Installing native ncurses tic"
- CT_DoLog EXTRA "Configuring ncurses tic"
mkdir -p "${CT_BUILD_DIR}/build-ncurses-build-tic"
cd "${CT_BUILD_DIR}/build-ncurses-build-tic"
@@ -153,17 +151,12 @@ do_debug_gdb_build() {
# extension appended to executables. Find that.
tic_ext=$(grep -E '^x[[:space:]]*=' progs/Makefile |sed -r -e 's/^.*=[[:space:]]*//;')
- CT_DoLog EXTRA "Building ncurses tic"
CT_DoExecLog ALL make ${PARALLELMFLAGS} -C include
CT_DoExecLog ALL make ${PARALLELMFLAGS} -C progs "tic${tic_ext}"
- CT_DoLog EXTRA "Installing ncurses tic"
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_EndStep # tic build
-
- CT_DoLog EXTRA "Configuring ncurses"
mkdir -p "${CT_BUILD_DIR}/build-ncurses"
cd "${CT_BUILD_DIR}/build-ncurses"
@@ -181,17 +174,13 @@ do_debug_gdb_build() {
--enable-termcap \
"${ncurses_opts[@]}"
- CT_DoLog EXTRA "Building ncurses"
CT_DoExecLog ALL make ${PARALLELMFLAGS}
- CT_DoLog EXTRA "Installing ncurses"
CT_DoExecLog ALL make install
# We no longer need the temporary tic. Remove it
CT_DoExecLog DEBUG rm -fv "${CT_PREFIX_DIR}/bin/tic"
- CT_EndStep # ncurses build
-
CT_DoLog EXTRA "Configuring native gdb"
mkdir -p "${CT_BUILD_DIR}/build-gdb-native"