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