svn commit: trunk/busybox/scripts/config

aldot at busybox.net aldot at busybox.net
Thu Jun 15 21:56:30 UTC 2006


Author: aldot
Date: 2006-06-15 14:56:28 -0700 (Thu, 15 Jun 2006)
New Revision: 15400

Log:
- use shorter boilerplate, more accurate header guard
- don't use multi-line string literals


Modified:
   trunk/busybox/scripts/config/mkconfigs


Changeset:
Modified: trunk/busybox/scripts/config/mkconfigs
===================================================================
--- trunk/busybox/scripts/config/mkconfigs	2006-06-15 21:39:34 UTC (rev 15399)
+++ trunk/busybox/scripts/config/mkconfigs	2006-06-15 21:56:28 UTC (rev 15400)
@@ -32,36 +32,20 @@
 else	config=$1
 fi
 
-echo "#ifndef _BBCONFIG_H"
-echo "#define _BBCONFIG_H"
+echo "#ifndef _BBCONFIGOPTS_H"
+echo "#define _BBCONFIGOPTS_H"
 echo \
 "/*
- * busybox configuration options.
+ * busybox configuration settings.
  *
- * 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
- * your option) any later version.
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
- * NON INFRINGEMENT.  See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- *
- *
  * This file is generated automatically by scripts/config/mkconfigs.
  * Do not edit.
  *
  */"
 
 echo "static const char * const bbconfig_config ="
-echo "\"\\"
-echo "`sed 's/\"/\\\\\"/g' $config | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `"
-echo "\";"
-echo "#endif /* _BBCONFIG_H */"
+echo "`sed 's/\"/\\\\\"/g' $config | grep "^#\? \?CONFIG_" | awk '{print "\\"" $0 "\\\\n\\"";}'`"
+echo ";"
+echo "#endif /* _BBCONFIGOPTS_H */"




More information about the busybox-cvs mailing list