diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-04-22 23:13:02 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-04-22 23:13:02 +0200 |
commit | 05c843d89ae4520d7196a98f947e97c4243d14c2 (patch) | |
tree | a3689d9f2dd97a129f97f71e82df94928f6906dc /adk | |
parent | 53252e6369c2b3657e00d750e3e0535710eb1848 (diff) |
mksh needs mmu
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); |