summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/CREDITS2
-rwxr-xr-xwps/wpsbuild.pl2
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/CREDITS b/docs/CREDITS
index 128bdf61cc..74d4289766 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -432,6 +432,8 @@ Marcin Łukasik
432Le Jin 432Le Jin
433Alex Bennee 433Alex Bennee
434Stéphane Quertinmont 434Stéphane Quertinmont
435Bartosz Fabianowski
436
435 437
436The libmad team 438The libmad team
437The wavpack team 439The wavpack team
diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl
index 4a27325e35..bb229dfebf 100755
--- a/wps/wpsbuild.pl
+++ b/wps/wpsbuild.pl
@@ -13,7 +13,6 @@ use Getopt::Long qw(:config pass_through); # pass_through so not confused by -DT
13 13
14my $ROOT=".."; 14my $ROOT="..";
15my $verbose; 15my $verbose;
16my $firmdir="$ROOT/firmware";
17my $rbdir=".rockbox"; 16my $rbdir=".rockbox";
18my $wpslist; 17my $wpslist;
19my $target; 18my $target;
@@ -26,6 +25,7 @@ GetOptions ( 'r|root=s' => \$ROOT,
26 25
27($wpslist, $target) = @ARGV; 26($wpslist, $target) = @ARGV;
28 27
28my $firmdir="$ROOT/firmware";
29my $cppdef = $target; 29my $cppdef = $target;
30my @depthlist = ( 16, 8, 4, 2, 1 ); 30my @depthlist = ( 16, 8, 4, 2, 1 );
31 31