Missing comma, and slight simplification in defconfig sed invocation.

This commit is contained in:
Rob Landley 2007-01-31 15:23:21 -05:00
parent de05a7024f
commit edee7ddeb5
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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[].