Skip to content

Commit

Permalink
Update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
thorvald committed Dec 4, 2010
1 parent 012dfc6 commit c0bf2c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions scripts/release.pl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ ($$)
$vdir =~ s/-build/-src/;
push @vpath, $vdir.'libcelt/';
} else {
push @vpath,map { "$basedir$_/"} split(/\s/, $value);
push @vpath,map { "$basedir$_/"} map { s/\$\$PWD/./; $_;} split(/\s/, $value);
}
}
case "subdirs" {
Expand Down Expand Up @@ -132,7 +132,7 @@ ($$)
}

my @fulldirs = ('speex','speex/include/speex','speex/libspeex','man');
foreach my $cver ('0.7.0') {
foreach my $cver ('0.7.0', '0.9.0') {
push @fulldirs, "celt-$cver-src";
push @fulldirs, "celt-$cver-src/libcelt";
}
Expand All @@ -152,10 +152,10 @@ ($$)
delete($files{'LICENSE'});

if ($#ARGV < 0) {
open(F, "git rev-parse --short=6 origin|");
open(F, "git describe origin|");
while (<F>) {
chomp();
$ver .= "~" . strftime("%Y%m%d%H%M",gmtime()) . "-" . $_;
$ver = $_;
}
close(F);
print "REVISION $ver\n";
Expand Down
2 changes: 1 addition & 1 deletion src/mumble.pri
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DEFINES *= MUMBLE_VERSION_STRING=$$VERSION
INCLUDEPATH += $$PWD .
VPATH += $$PWD
HEADERS *= ACL.h Group.h Channel.h Connection.h User.h Net.h
SOURCES *= Mumble.pb.cc ACL.cpp Group.cpp Channel.cpp Connection.cpp User.cpp Timer.cpp CryptState.cpp OSInfo.cpp Net.cpp SSL.cpp ../Version.cpp
SOURCES *= Mumble.pb.cc ACL.cpp Group.cpp Channel.cpp Connection.cpp User.cpp Timer.cpp CryptState.cpp OSInfo.cpp Net.cpp SSL.cpp Version.cpp
PROTOBUF *= ../Mumble.proto

pb.output = ${QMAKE_FILE_BASE}.pb.cc
Expand Down

0 comments on commit c0bf2c2

Please sign in to comment.