diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | scripts/install.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ include kconfig/Makefile # defconfig is the "maximum sane config"; allyesconfig minus debugging and such. defconfig: allyesconfig - @sed -i -r -e "s/^(CONFIG_(TOYBOX_DEBUG|TOYBOX_FREE))=.*/# \1 is not set/" .config + @sed -i -r -e "s/^(CONFIG_TOYBOX_(DEBUG|FREE))=.*/# \1 is not set/" .config .config: Config.in toys/Config.in diff --git a/scripts/install.c b/scripts/install.c index b5744868..5564fa50 100644 --- a/scripts/install.c +++ b/scripts/install.c @@ -9,7 +9,7 @@ #undef NEWTOY #undef OLDTOY #define NEWTOY(name, opts, flags) {#name, 0, opts, flags}, -#define OLDTOY(name, oldname, opts, flags) {#name, 0, opts, flags} +#define OLDTOY(name, oldname, opts, flags) {#name, 0, opts, flags}, // Populate toy_list[]. |