From 9bb59e45c6d780356db1b39e8921bf242964583d Mon Sep 17 00:00:00 2001 From: "Asanka C. Herath" Date: Tue, 9 Nov 2010 15:38:41 -0500 Subject: [PATCH] Deal with backslash delimited paths in make-proto.pl --- cf/make-proto.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/cf/make-proto.pl b/cf/make-proto.pl index 566534f24..bc323b943 100644 --- a/cf/make-proto.pl +++ b/cf/make-proto.pl @@ -180,6 +180,7 @@ sub foo { local ($arg) = @_; $_ = $arg; s/.*\/([^\/]*)/$1/; + s/.*\\([^\\]*)/$1/; s/[^a-zA-Z0-9]/_/g; "__" . $_ . "__"; }