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:
authorThorvald Natvig <slicer@users.sourceforge.net>2009-08-05 21:59:11 +0400
committerThorvald Natvig <slicer@users.sourceforge.net>2009-08-05 21:59:11 +0400
commit585b0ddd5aa67e64a7f3cd1946390c7d157517dc (patch)
tree4d2a3ccdb5f67e855f1cf33f70f1094c3b1f4529 /scripts/release.pl
parente3261dbc357558e21f403678016629d572dab8d1 (diff)
Symlinks and ugly copy hacks. I want gitsymlink on win32.
Diffstat (limited to 'scripts/release.pl')
-rw-r--r--scripts/release.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/release.pl b/scripts/release.pl
index c4138cafd..07dd48e8c 100644
--- a/scripts/release.pl
+++ b/scripts/release.pl
@@ -60,8 +60,10 @@ while (my $pro = shift @pro) {
my ($var,$value)=(lc $1,$2);
switch ($var) {
case "version" {
- croak "Versions don't match" if (defined($ver) && ($ver ne $value));
- $ver=$value;
+ if ($basedir !~ /mumble11x/) {
+ croak "Versions don't match" if (defined($ver) && ($ver ne $value));
+ $ver=$value;
+ }
}
case "vpath" {
push @vpath,map { "$basedir$_/"} split(/\s/, $value);