aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-15 18:33:30 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-15 18:33:30 +0000
commit68524a0b091e41ab470c665669f07b8f59982411 (patch)
treeb39517a5b0ae06cf6ca3392e1111aed91313f5ac
parent523f266d64568d4d9a1447452179f37161f776d6 (diff)
downloadbusybox-w32-68524a0b091e41ab470c665669f07b8f59982411.tar.gz
busybox-w32-68524a0b091e41ab470c665669f07b8f59982411.tar.bz2
busybox-w32-68524a0b091e41ab470c665669f07b8f59982411.zip
Whitespace patch (and removal of gratuitous use of cat) by Berhnard Fischer.
git-svn-id: svn://busybox.net/trunk/busybox@11471 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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"
36echo "#define _BBCONFIG_H" 36echo "#define _BBCONFIG_H"
37echo \ 37echo \
38"/* 38"/*
39 * 39 * busybox configuration options.
40 *
40 * This program is free software; you can redistribute it and/or modify 41 * This program is free software; you can redistribute it and/or modify
41 * it under the terms of the GNU General Public License as published by 42 * it under the terms of the GNU General Public License as published by
42 * the Free Software Foundation; either version 2 of the License, or (at 43 * the Free Software Foundation; either version 2 of the License, or (at
@@ -53,13 +54,14 @@ echo \
53 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 54 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
54 * 55 *
55 * 56 *
56 * 57 *
57 * This file is generated automatically by scripts/config/mkconfigs. Do not edit. 58 * This file is generated automatically by scripts/config/mkconfigs.
59 * Do not edit.
58 * 60 *
59 */" 61 */"
60 62
61echo "static char const bbconfig_config[] = " 63echo "static char const bbconfig_config[] ="
62echo "\"CONFIG_BEGIN=n\\n\\" 64echo "\"CONFIG_BEGIN=n\\n\\"
63echo "`cat $config | sed 's/\"/\\\\\"/g' | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `" 65echo "`sed 's/\"/\\\\\"/g' $config | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `"
64echo "CONFIG_END=n\\n\";" 66echo "CONFIG_END=n\\n\";"
65echo "#endif /* _BBCONFIG_H */" 67echo "#endif /* _BBCONFIG_H */"