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>2012-01-08 23:05:58 +0400
committerThorvald Natvig <slicer@users.sourceforge.net>2012-01-08 23:05:58 +0400
commit9bd726a816dbb33708ccfac3981dbcfdc9af0d36 (patch)
treeccffceccd5c80c84e9320f33d5ba7316c6e146e6 /scripts/release.pl
parent8667e6d51d33e09e06b464ff1c64c5c2057bc141 (diff)
Parse \ in pro files
Diffstat (limited to 'scripts/release.pl')
-rw-r--r--scripts/release.pl15
1 files changed, 14 insertions, 1 deletions
diff --git a/scripts/release.pl b/scripts/release.pl
index 3efde46c9..d5fb27ef4 100644
--- a/scripts/release.pl
+++ b/scripts/release.pl
@@ -50,7 +50,13 @@ while (my $pro = shift @pro) {
my $basedir=$pro;
$basedir =~ s/[^\/]+\Z//g;
my @vpath = ($basedir);
- while(<F>) {
+
+ my $file = join("", <F>);
+ $file =~ s/\\\n/\n/g;
+ print $file;
+
+ foreach my $line (split(/\n/, $file)) {
+ $_ = $line;
chomp();
if (/^include\((.+)\)/) {
my $f = $basedir . $1;
@@ -134,6 +140,13 @@ foreach my $cver ('0.7.0', '0.11.0') {
push @fulldirs, "celt-$cver-src";
push @fulldirs, "celt-$cver-src/libcelt";
}
+push @fulldirs, "opus-src";
+push @fulldirs, "opus-src/celt";
+push @fulldirs, "opus-src/silk";
+push @fulldirs, "opus-src/silk/float";
+push @fulldirs, "opus-src/silk/fixed";
+push @fulldirs, "opus-src/src";
+push @fulldirs, "opus-src/include";
foreach my $dir (@fulldirs) {
opendir(D, $dir) or croak "Could not open $dir";