Kaydet (Commit) 13dc61da authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Proper quoting

Change-Id: Ib619ffc06d580acb5dc5f21ad6d0a439569bee2a
üst 79107182
......@@ -35,7 +35,7 @@ sub otoolD($) {
my $call = "otool -D $file";
open(IN, "-|", $call) or die "cannot $call";
my $line = <IN>;
$line =~ /^$file:\n$/ or
$line =~ /^\Q$file\E:\n$/ or
die "unexpected otool -D output (\"$line\", expecting \"$file:\")";
$line = <IN>;
<IN> == undef or die "unexpected otool -D output";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment