diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-09-15 18:33:30 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-09-15 18:33:30 +0000 |
commit | 68524a0b091e41ab470c665669f07b8f59982411 (patch) | |
tree | b39517a5b0ae06cf6ca3392e1111aed91313f5ac | |
parent | 523f266d64568d4d9a1447452179f37161f776d6 (diff) | |
download | busybox-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-x | scripts/config/mkconfigs | 12 |
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" | |||
36 | echo "#define _BBCONFIG_H" | 36 | echo "#define _BBCONFIG_H" |
37 | echo \ | 37 | echo \ |
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 | ||
61 | echo "static char const bbconfig_config[] = " | 63 | echo "static char const bbconfig_config[] =" |
62 | echo "\"CONFIG_BEGIN=n\\n\\" | 64 | echo "\"CONFIG_BEGIN=n\\n\\" |
63 | echo "`cat $config | sed 's/\"/\\\\\"/g' | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `" | 65 | echo "`sed 's/\"/\\\\\"/g' $config | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `" |
64 | echo "CONFIG_END=n\\n\";" | 66 | echo "CONFIG_END=n\\n\";" |
65 | echo "#endif /* _BBCONFIG_H */" | 67 | echo "#endif /* _BBCONFIG_H */" |