Strip single quotes around our output paths. This should fix the current

U3 buildbot failure.

svn path=/trunk/; revision=28438
This commit is contained in:
Gerald Combs 2009-05-21 19:53:35 +00:00
parent 3eab9f8463
commit c6f8385a44
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ my @defines; # stack of defines
while ($line = <>) {
if($line =~ /^SetOutPath (.+)$/) {
$outpath = $1;
$outpath =~ s/^'(.*)'$/$1/;
if($outpath ne '$PROFILE') { # ignore the PROFILE
push(@dirs, $outpath);
}