]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - scripts/basic/fixdep.c
Merge with /pub/scm/linux/kernel/git/torvalds/linux-2.6.git
[linux-2.6-omap-h63xx.git] / scripts / basic / fixdep.c
index 679124b11e12645b088877fbee8d3d6e901cb24e..668a11a8b383ce4a35bd98daf5720ef0da9a2077 100644 (file)
@@ -132,20 +132,10 @@ void usage(void)
 
 /*
  * Print out the commandline prefixed with cmd_<target filename> :=
- * If commandline contains '#' escape with '\' so make to not see
- * the '#' as a start-of-comment symbol
- **/
+ */
 void print_cmdline(void)
 {
-       char *p = cmdline;
-
-       printf("cmd_%s := ", target);
-       for (; *p; p++) {
-               if (*p == '#')
-                       printf("\\");
-               printf("%c", *p);
-       }
-       printf("\n\n");
+       printf("cmd_%s := %s\n\n", target, cmdline);
 }
 
 char * str_config  = NULL;