summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-14 21:21:35 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-14 21:21:35 (GMT)
commit0b499187a29f0bdd30f038540931353f4da6f07d (patch)
tree1b07a836add0156c8f8f17cce34b5f8f9b73a109 /scripts
parentc28010bdd14e3d68a5d97af6cdfc882e4a96037b (diff)
Fix CT_DoExecLog usage when building GMP for target.
/trunk/scripts/build/gmp.sh | 8 4 4 0 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/gmp.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/gmp.sh b/scripts/build/gmp.sh
index 3770866..e652155 100644
--- a/scripts/build/gmp.sh
+++ b/scripts/build/gmp.sh
@@ -40,7 +40,7 @@ do_gmp() {
--host=${CT_HOST} \
--prefix="${CT_PREFIX_DIR}" \
--disable-shared --enable-static \
- --enable-fft --enable-mpbsd 2>&1 |CT_DoLog ALL
+ --enable-fft --enable-mpbsd
CT_DoLog EXTRA "Building GMP"
CT_DoExecLog ALL make ${PARALLELMFLAGS}
@@ -72,15 +72,15 @@ do_gmp_target() {
--host=${CT_TARGET} \
--prefix=/usr \
--disable-shared --enable-static \
- --enable-fft --enable-mpbsd 2>&1 |CT_DoLog ALL
+ --enable-fft --enable-mpbsd
CT_DoLog EXTRA "Building GMP"
- CT_DoExecLog ALL make ${PARALLELMFLAGS} 2>&1 |CT_DoLog ALL
+ CT_DoExecLog ALL make ${PARALLELMFLAGS}
# Not possible to check MPFR while X-compiling
CT_DoLog EXTRA "Installing GMP"
- CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install 2>&1 |CT_DoLog ALL
+ CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install
CT_EndStep
}