changeset 91:b596b9b3b2af

Missing comma, and slight simplification in defconfig sed invocation.
author Rob Landley <rob@landley.net>
date Wed, 31 Jan 2007 15:23:21 -0500
parents 7c77c6ec17ee
children 154070b2b28d
files Makefile scripts/install.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Wed Jan 31 14:37:01 2007 -0500
+++ b/Makefile	Wed Jan 31 15:23:21 2007 -0500
@@ -14,7 +14,7 @@
 
 # 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
 
--- a/scripts/install.c	Wed Jan 31 14:37:01 2007 -0500
+++ b/scripts/install.c	Wed Jan 31 15:23:21 2007 -0500
@@ -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[].