Only install headers when installing uClibc headers.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Nov 01 17:02:48 2008 +0000 (2008-11-01)
changeset 1027ae53f827dce6
parent 1026 f9f8d8f1d6d8
child 1028 a934a4d0e602
Only install headers when installing uClibc headers.

/trunk/scripts/build/libc/uClibc.sh | 10 5 5 0 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
scripts/build/libc/uClibc.sh
     1.1 --- a/scripts/build/libc/uClibc.sh	Sat Nov 01 16:49:00 2008 +0000
     1.2 +++ b/scripts/build/libc/uClibc.sh	Sat Nov 01 17:02:48 2008 +0000
     1.3 @@ -78,7 +78,7 @@
     1.4      CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" headers
     1.5  
     1.6      CT_DoLog EXTRA "Installing headers"
     1.7 -    CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_dev
     1.8 +    CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_headers
     1.9  
    1.10      CT_EndStep
    1.11  }
    1.12 @@ -127,12 +127,12 @@
    1.13  
    1.14      # YEM-FIXME: we want to install libraries in $SYSROOT/lib, but we don't want
    1.15      # to install headers in $SYSROOT/include, thus making only install_runtime.
    1.16 -    # Plus, the headers were previously installed earlier with install_dev, so
    1.17 -    # all should be well. Unfortunately, the install_dev target does not install
    1.18 -    # crti.o and consorts... :-( So reverting to target 'install'.
    1.19 +    # Plus, the headers were previously installed earlier with install_headers,
    1.20 +    # so all should be well. Unfortunately, the install_headers target does not
    1.21 +    # install crti.o and consorts... :-( So reverting to target 'install'.
    1.22      # Note: PARALLELMFLAGS is not usefull for installation.
    1.23      # We do _not_ want to strip anything for now, in case we specifically
    1.24 -    # asked for a debug toolchain, thus the STRIPTOOL= assignment
    1.25 +    # asked for a debug toolchain, hence the STRIPTOOL= assignment
    1.26      CT_DoLog EXTRA "Installing C library"
    1.27      CT_DoExecLog ALL                    \
    1.28      make CROSS=${CT_TARGET}-            \