TODO 806 B

1234567891011121314151617
  1. Buildroot2 TODOs
  2. - fix packages/Makefile.autotools.in to use a package-imposed patchdir
  3. (Ivan Kuten)
  4. - convert all packages that use autoconf to use the infrastructure of
  5. packages/Makefile.autotools.in
  6. - fix setting of flags for packages
  7. - coreutils: use make install-strip to install the packages. For now,
  8. it fails beause even if we pass STRIP="/path/to/$(ARCH)-strip", the
  9. coreutils build system uses the host strip to strip target
  10. binaries. The ./configure execution done by Buildroot properly
  11. detects the cross-strip, but when running make, build-aux/missing
  12. gets run, complains about aclocal-1.10c and atuomake-1.10c not being
  13. present, and rerun the configuration... with the wrong environment
  14. variables (STRIP= is missing). An autoreconf on this package is
  15. probably necessary.