summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2009-07-31 15:00:15 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2009-07-31 15:00:15 +0200
commit385e9e4ea5d66bb6d7189f818f6b28c3df32f277 (patch)
treefe543ac29556bfc599c78afd9e7b944451a9279e
parent0ef93af1e4e0b019da650bfc305053d0b79dc1d0 (diff)
coreutils: add TODO note about stripping the installed binaries
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--TODO10
1 files changed, 10 insertions, 0 deletions
diff --git a/TODO b/TODO
index 4de15ab27..bf98fea1b 100644
--- a/TODO
+++ b/TODO
@@ -5,3 +5,13 @@ Buildroot2 TODOs
- convert all packages that use autoconf to use the infrastructure of
packages/Makefile.autotools.in
- fix setting of flags for packages
+
+- coreutils: use make install-strip to install the packages. For now,
+ it fails beause even if we pass STRIP="/path/to/$(ARCH)-strip", the
+ coreutils build system uses the host strip to strip target
+ binaries. The ./configure execution done by Buildroot properly
+ detects the cross-strip, but when running make, build-aux/missing
+ gets run, complains about aclocal-1.10c and atuomake-1.10c not being
+ present, and rerun the configuration... with the wrong environment
+ variables (STRIP= is missing). An autoreconf on this package is
+ probably necessary.