Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2014-01-11 02:46:30 +0400
committerMikkel Krautz <mikkel@krautz.dk>2014-01-11 02:46:30 +0400
commit00b368634678971478f2dbe448a3e079c1c75e13 (patch)
tree4b706d26b6d0cb6cb2801b3dce2382968af3eff3 /scripts
parent405d6e43a809f11e68af9bd1839538ba628a84f2 (diff)
scripts/release.pl: add vpath special-case for fx11.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/release.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/release.pl b/scripts/release.pl
index 254c3acc9..d90d961dd 100644
--- a/scripts/release.pl
+++ b/scripts/release.pl
@@ -84,6 +84,9 @@ while (my $pro = shift @pro) {
} elsif ($value eq '../$$SOURCEDIR/helper') { # sbcelt helper
$vdir =~ s/-helper-build/-src/;
push @vpath, $vdir.'helper/';
+ } elsif ($vdir eq '3rdparty/fx11-build/' and $value eq '../$$SOURCEDIR') { # fx11
+ $vdir =~ s/-build/-src/;
+ push @vpath, $vdir;
} else {
push @vpath,map { "$basedir$_/"} map { s/\$\$PWD/./; $_;} split(/\s/, $value);
}