summaryrefslogtreecommitdiff
path: root/adk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-03 13:22:22 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-03 13:31:01 +0200
commitc3d39ab15aefd239c617288e2cfe11d3eeea00f4 (patch)
tree2980934b182bb2b27401cc7c2c859a498e8896cc /adk
parent1ecabcafa838ea0ec2d5d7db24cbdfba2f123af2 (diff)
remove librt/libpthread packages, not required anymore
Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
Diffstat (limited to 'adk')
-rw-r--r--adk/tools/pkgmaker.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/adk/tools/pkgmaker.c b/adk/tools/pkgmaker.c
index ae73ee848..56f516768 100644
--- a/adk/tools/pkgmaker.c
+++ b/adk/tools/pkgmaker.c
@@ -905,14 +905,12 @@ int main() {
if (pkg_needs != NULL) {
token = strtok(pkg_needs, " ");
while (token != NULL) {
- if (strncmp(token, "threads", 7) == 0)
- fprintf(cfg, "\tselect ADK_PACKAGE_LIBPTHREAD\n");
- if (strncmp(token, "rt", 2) == 0)
- fprintf(cfg, "\tselect ADK_PACKAGE_LIBRT\n");
if (strncmp(token, "c++", 3) == 0) {
fprintf(cfg, "\tselect ADK_TOOLCHAIN_WITH_CXX\n");
fprintf(cfg, "\tselect ADK_PACKAGE_LIBSTDCXX\n");
}
+ if (strncmp(token, "threads", 7) == 0)
+ fprintf(cfg, "\tselect ADK_TARGET_LIB_WITH_THREADS\n");
if (strncmp(token, "mmu", 3) == 0)
fprintf(cfg, "\tdepends on ADK_TARGET_WITH_MMU\n");
token = strtok(NULL, " ");