linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] kbuild: fix sed error in export_report.pl
@ 2011-04-25 23:51 Peter Foley
  2011-04-26  6:40 ` Arnaud Lacombe
  2011-04-26 14:40 ` Michal Marek
  0 siblings, 2 replies; 6+ messages in thread
From: Peter Foley @ 2011-04-25 23:51 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-kbuild, mmarek

This patch fixes a sed error in export_report.pl by escaping a $.

Signed-off-by: Peter Foley <pefoley2@verizon.net>
---
 scripts/export_report.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/export_report.pl b/scripts/export_report.pl
index 04dce7c..91fa5a2 100644
--- a/scripts/export_report.pl
+++ b/scripts/export_report.pl
@@ -50,7 +50,7 @@ sub usage {
  sub collectcfiles {
     my @file
-	= `cat .tmp_versions/*.mod | grep '.*\.ko\$' | sed s/\.ko$/.mod.c/`;
+	= `cat .tmp_versions/*.mod | grep '.*\.ko\$' | sed s/\.ko\$/.mod.c/`;
     chomp @file;
     return @file;
 }
-- 
1.7.5.rc1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-04-26 21:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-25 23:51 [PATCH] kbuild: fix sed error in export_report.pl Peter Foley
2011-04-26  6:40 ` Arnaud Lacombe
2011-04-26 14:17   ` Peter Foley
2011-04-26 14:27     ` Américo Wang
2011-04-26 14:40 ` Michal Marek
2011-04-26 21:10   ` Peter Foley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).