diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-07-14 15:58:39 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-07-14 15:58:39 +0000 |
commit | 223231bcc36a5b8eed9bd70a988a7f0776d74332 (patch) | |
tree | b42f3c7c036fedfd0665c1b288ec819a1dd2c395 | |
parent | 549ef5d7404ba8c3016011bd73aebd87ec7ddcbf (diff) | |
download | crosstool-ng-223231bcc36a5b8eed9bd70a988a7f0776d74332.tar.gz crosstool-ng-223231bcc36a5b8eed9bd70a988a7f0776d74332.tar.bz2 crosstool-ng-223231bcc36a5b8eed9bd70a988a7f0776d74332.zip |
Use CT_DoExecLog when building libelf.
/trunk/scripts/build/tools/100-libelf.sh | 7 4 3 0 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
-rw-r--r-- | scripts/build/tools/100-libelf.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/build/tools/100-libelf.sh b/scripts/build/tools/100-libelf.sh index 5bb1d7ba..eeb4b3c5 100644 --- a/scripts/build/tools/100-libelf.sh +++ b/scripts/build/tools/100-libelf.sh @@ -25,6 +25,7 @@ do_tools_libelf_build() { CT_DoLog EXTRA "Configuring libelf" CC="${CT_TARGET}-gcc" \ + CT_DoExecLog ALL \ "${CT_SRC_DIR}/libelf-${CT_LIBELF_VERSION}/configure" \ --build=${CT_BUILD} \ --host=${CT_TARGET} \ @@ -34,13 +35,13 @@ do_tools_libelf_build() { --enable-elf64 \ --enable-shared \ --enable-extended-format \ - --enable-static 2>&1 |CT_DoLog ALL + --enable-static CT_DoLog EXTRA "Building libelf" - make 2>&1 |CT_DoLog ALL + CT_DoExecLog ALL make CT_DoLog EXTRA "Installing libelf" - make instroot="${CT_SYSROOT_DIR}" install 2>&1 |CT_DoLog ALL + CT_DoExecLog ALL make instroot="${CT_SYSROOT_DIR}" install CT_Popd CT_EndStep |