aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/ws-manifest.pl
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-05-21 19:53:35 +0000
committerGerald Combs <gerald@wireshark.org>2009-05-21 19:53:35 +0000
commitc6f8385a449e914166f3c9dff8b6b0603e5758d6 (patch)
treebce8ea96905d27a1d242b2948d7f8fd151946e87 /packaging/ws-manifest.pl
parent3eab9f8463da2b9e03d0778e310b0b30bc069a42 (diff)
Strip single quotes around our output paths. This should fix the current
U3 buildbot failure. svn path=/trunk/; revision=28438
Diffstat (limited to 'packaging/ws-manifest.pl')
-rw-r--r--packaging/ws-manifest.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/packaging/ws-manifest.pl b/packaging/ws-manifest.pl
index f0e3767ea7..6b391069ef 100644
--- a/packaging/ws-manifest.pl
+++ b/packaging/ws-manifest.pl
@@ -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);
}