diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-15 21:56:28 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-15 21:56:28 +0000 |
commit | 1761b9dabe9b1bd5ca5233e181fd8926ade5a390 (patch) | |
tree | 74536701af4f639167fcd9312be2a8db51afb1d9 | |
parent | 7011dd0e06334b01533553a654ecb044ccf2eed7 (diff) | |
download | busybox-w32-1761b9dabe9b1bd5ca5233e181fd8926ade5a390.tar.gz busybox-w32-1761b9dabe9b1bd5ca5233e181fd8926ade5a390.tar.bz2 busybox-w32-1761b9dabe9b1bd5ca5233e181fd8926ade5a390.zip |
- use shorter boilerplate, more accurate header guard
- don't use multi-line string literals
-rwxr-xr-x | scripts/config/mkconfigs | 30 |
1 files changed, 7 insertions, 23 deletions
diff --git a/scripts/config/mkconfigs b/scripts/config/mkconfigs index 3443e037e..fda9de72f 100755 --- a/scripts/config/mkconfigs +++ b/scripts/config/mkconfigs | |||
@@ -32,28 +32,13 @@ then | |||
32 | else config=$1 | 32 | else config=$1 |
33 | fi | 33 | fi |
34 | 34 | ||
35 | echo "#ifndef _BBCONFIG_H" | 35 | echo "#ifndef _BBCONFIGOPTS_H" |
36 | echo "#define _BBCONFIG_H" | 36 | echo "#define _BBCONFIGOPTS_H" |
37 | echo \ | 37 | echo \ |
38 | "/* | 38 | "/* |
39 | * busybox configuration options. | 39 | * busybox configuration settings. |
40 | * | ||
41 | * This program is free software; you can redistribute it and/or modify | ||
42 | * it under the terms of the GNU General Public License as published by | ||
43 | * the Free Software Foundation; either version 2 of the License, or (at | ||
44 | * your option) any later version. | ||
45 | * | ||
46 | * This program is distributed in the hope that it will be useful, but | ||
47 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
48 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or | ||
49 | * NON INFRINGEMENT. See the GNU General Public License for more | ||
50 | * details. | ||
51 | * | ||
52 | * You should have received a copy of the GNU General Public License | ||
53 | * along with this program; if not, write to the Free Software | ||
54 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
55 | * | ||
56 | * | 40 | * |
41 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | ||
57 | * | 42 | * |
58 | * This file is generated automatically by scripts/config/mkconfigs. | 43 | * This file is generated automatically by scripts/config/mkconfigs. |
59 | * Do not edit. | 44 | * Do not edit. |
@@ -61,7 +46,6 @@ echo \ | |||
61 | */" | 46 | */" |
62 | 47 | ||
63 | echo "static const char * const bbconfig_config =" | 48 | echo "static const char * const bbconfig_config =" |
64 | echo "\"\\" | 49 | echo "`sed 's/\"/\\\\\"/g' $config | grep "^#\? \?CONFIG_" | awk '{print "\\"" $0 "\\\\n\\"";}'`" |
65 | echo "`sed 's/\"/\\\\\"/g' $config | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `" | 50 | echo ";" |
66 | echo "\";" | 51 | echo "#endif /* _BBCONFIGOPTS_H */" |
67 | echo "#endif /* _BBCONFIG_H */" | ||