From c3d39ab15aefd239c617288e2cfe11d3eeea00f4 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 3 Oct 2016 13:22:22 +0200 Subject: remove librt/libpthread packages, not required anymore Signed-off-by: Waldemar Brodkorb --- adk/tools/pkgmaker.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'adk/tools') 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, " "); -- cgit v1.2.3