diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-11 18:04:23 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-11 18:04:23 +0000 |
commit | f81ac42689be490b86b3845f9dc772c8e3d048d5 (patch) | |
tree | fd445c43910f1f738381396000922c05f4c31fb4 /scripts | |
parent | a926f8e50a3420648b526a85fcdefe66c9a7926f (diff) | |
download | busybox-f81ac42689be490b86b3845f9dc772c8e3d048d5.tar.gz |
- remove superfluous CONFIG_BEGIN and CONFIG_END
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/config/mkconfigs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/config/mkconfigs b/scripts/config/mkconfigs index 3cb7bb175..be5d9d177 100755 --- a/scripts/config/mkconfigs +++ b/scripts/config/mkconfigs @@ -61,7 +61,7 @@ echo \ */" echo "static char const bbconfig_config[] =" -echo "\"CONFIG_BEGIN=n\\n\\" +echo "\"\\" echo "`sed 's/\"/\\\\\"/g' $config | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `" -echo "CONFIG_END=n\\n\";" +echo "\";" echo "#endif /* _BBCONFIG_H */" |