Whitespace patch (and removal of gratuitous use of cat) by Berhnard Fischer.

This commit is contained in:
Rob Landley 2005-09-15 18:33:30 +00:00
parent 6a65d2f8cc
commit bfd94c4331

View File

@ -36,6 +36,7 @@ echo "#ifndef _BBCONFIG_H"
echo "#define _BBCONFIG_H" echo "#define _BBCONFIG_H"
echo \ echo \
"/* "/*
* busybox configuration options.
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -54,12 +55,13 @@ echo \
* *
* *
* *
* This file is generated automatically by scripts/config/mkconfigs. Do not edit. * This file is generated automatically by scripts/config/mkconfigs.
* Do not edit.
* *
*/" */"
echo "static char const bbconfig_config[] = " echo "static char const bbconfig_config[] ="
echo "\"CONFIG_BEGIN=n\\n\\" echo "\"CONFIG_BEGIN=n\\n\\"
echo "`cat $config | sed 's/\"/\\\\\"/g' | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `" echo "`sed 's/\"/\\\\\"/g' $config | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `"
echo "CONFIG_END=n\\n\";" echo "CONFIG_END=n\\n\";"
echo "#endif /* _BBCONFIG_H */" echo "#endif /* _BBCONFIG_H */"