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>2012-10-29 21:54:45 +0400
committerMikkel Krautz <mikkel@krautz.dk>2012-10-29 21:54:45 +0400
commit8b226ca09f28bb626db1e10c6194a66843e12841 (patch)
treeddc25b4ed548bfb9558082021bc23cf95a346f5d /scripts/release.pl
parentf4da6252e6cc29bcb37a1e72126522b34a473933 (diff)
scripts/release.pl: special considerations for sbcelt.
Diffstat (limited to 'scripts/release.pl')
-rw-r--r--scripts/release.pl8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/release.pl b/scripts/release.pl
index d2f51fe14..7ba2b0c27 100644
--- a/scripts/release.pl
+++ b/scripts/release.pl
@@ -74,10 +74,16 @@ while (my $pro = shift @pro) {
}
}
case "vpath" {
+ my $vdir = $basedir;
if ($value eq '../$$SOURCEDIR/libcelt') {
- my $vdir = $basedir;
$vdir =~ s/-build/-src/;
push @vpath, $vdir.'libcelt/';
+ } elsif ($value eq '../$$SOURCEDIR/lib') { # sbcelt lib
+ $vdir =~ s/-lib-build/-src/;
+ push @vpath, $vdir.'lib/';
+ } elsif ($value eq '../$$SOURCEDIR/helper') { # sbcelt helper
+ $vdir =~ s/-helper-build/-src/;
+ push @vpath, $vdir.'helper/';
} else {
push @vpath,map { "$basedir$_/"} map { s/\$\$PWD/./; $_;} split(/\s/, $value);
}