summaryrefslogtreecommitdiff
path: root/scripts/build/libc/uClibc.sh
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-11-01 17:02:48 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-11-01 17:02:48 (GMT)
commitdde482bd0d0d2d97bbba5d8cdda863b6b6580ca6 (patch)
tree40d674c463a9e543b922e743e2c2decb04ea8eb2 /scripts/build/libc/uClibc.sh
parent9c5fd0d3affd4d312d3deee4383b33268c41ad45 (diff)
Only install headers when installing uClibc headers.
/trunk/scripts/build/libc/uClibc.sh | 10 5 5 0 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
Diffstat (limited to 'scripts/build/libc/uClibc.sh')
-rw-r--r--scripts/build/libc/uClibc.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh
index 85f5997..485d45a 100644
--- a/scripts/build/libc/uClibc.sh
+++ b/scripts/build/libc/uClibc.sh
@@ -78,7 +78,7 @@ do_libc_headers() {
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 @@ do_libc() {
# 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}- \