aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-09-15 18:33:30 +0000
committerRob Landley <rob@landley.net>2005-09-15 18:33:30 +0000
commitbfd94c43310a7bbe679fc7185a7c19a3ed0e59ee (patch)
treeb39517a5b0ae06cf6ca3392e1111aed91313f5ac /scripts
parent6a65d2f8cccd5e9767b046e82650da95c238fd00 (diff)
downloadbusybox-bfd94c43310a7bbe679fc7185a7c19a3ed0e59ee.tar.gz
Whitespace patch (and removal of gratuitous use of cat) by Berhnard Fischer.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/config/mkconfigs12
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/config/mkconfigs b/scripts/config/mkconfigs
index f09c04ccd..3cb7bb175 100755
--- a/scripts/config/mkconfigs
+++ b/scripts/config/mkconfigs
@@ -36,7 +36,8 @@ echo "#ifndef _BBCONFIG_H"
echo "#define _BBCONFIG_H"
echo \
"/*
- *
+ * busybox configuration options.
+ *
* 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
* the Free Software Foundation; either version 2 of the License, or (at
@@ -53,13 +54,14 @@ echo \
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*
- *
- * 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 "`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 "#endif /* _BBCONFIG_H */"