diff options
Diffstat (limited to 'adk')
-rw-r--r-- | adk/tools/pkgmaker.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/adk/tools/pkgmaker.c b/adk/tools/pkgmaker.c index fff2c4fba..e21f31ef5 100644 --- a/adk/tools/pkgmaker.c +++ b/adk/tools/pkgmaker.c @@ -895,6 +895,8 @@ int main() { fprintf(cfg, "\tselect ADK_PACKAGE_LIBRT\n"); if (strncmp(token, "c++", 3) == 0) fprintf(cfg, "\tselect ADK_PACKAGE_LIBSTDCXX\n"); + if (strncmp(token, "mmu", 3) == 0) + fprintf(cfg, "\tdepends on ADK_TARGET_WITH_MMU\n"); token = strtok(NULL, " "); } free(pkg_needs); |