aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-01-31 15:23:21 -0500
committerRob Landley <rob@landley.net>2007-01-31 15:23:21 -0500
commitedee7ddeb58c706456bba60f5a7aa9a071643c57 (patch)
treee795480ae0099748a707773b94e44d1520b97e6f
parentde05a7024f4be6826d05c40aa029fe2bbf6d2818 (diff)
downloadtoybox-edee7ddeb58c706456bba60f5a7aa9a071643c57.tar.gz
Missing comma, and slight simplification in defconfig sed invocation.
-rw-r--r--Makefile2
-rw-r--r--scripts/install.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 471c089e..011a5624 100644
--- a/Makefile
+++ b/Makefile
@@ -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[].