# HG changeset patch # User "Yann E. MORIN" # Date 1225558968 0 # Node ID ae53f827dce6f925da4457e1d9c530f0d98c9d85 # Parent f9f8d8f1d6d8ed88807eda40903eee13d737707d Only install headers when installing uClibc headers. /trunk/scripts/build/libc/uClibc.sh | 10 5 5 0 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff -r f9f8d8f1d6d8 -r ae53f827dce6 scripts/build/libc/uClibc.sh --- a/scripts/build/libc/uClibc.sh Sat Nov 01 16:49:00 2008 +0000 +++ b/scripts/build/libc/uClibc.sh Sat Nov 01 17:02:48 2008 +0000 @@ -78,7 +78,7 @@ CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" headers CT_DoLog EXTRA "Installing headers" - CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_dev + CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_headers CT_EndStep } @@ -127,12 +127,12 @@ # YEM-FIXME: we want to install libraries in $SYSROOT/lib, but we don't want # to install headers in $SYSROOT/include, thus making only install_runtime. - # Plus, the headers were previously installed earlier with install_dev, so - # all should be well. Unfortunately, the install_dev target does not install - # crti.o and consorts... :-( So reverting to target 'install'. + # Plus, the headers were previously installed earlier with install_headers, + # so all should be well. Unfortunately, the install_headers target does not + # install crti.o and consorts... :-( So reverting to target 'install'. # Note: PARALLELMFLAGS is not usefull for installation. # We do _not_ want to strip anything for now, in case we specifically - # asked for a debug toolchain, thus the STRIPTOOL= assignment + # asked for a debug toolchain, hence the STRIPTOOL= assignment CT_DoLog EXTRA "Installing C library" CT_DoExecLog ALL \ make CROSS=${CT_TARGET}- \