summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2012-10-11 20:04:29 +0200
committerNils Wallménius <nils@rockbox.org>2012-10-12 18:40:35 +0200
commitab5879c5ea3508380a6ef43a01bbd465f816db00 (patch)
tree635cee8682e5ac422aded9df7a7c263837278862
parentbe6da12c098342a6fb86998dc2c1d54ab152a3e9 (diff)
downloadrockbox-ab5879c5ea3508380a6ef43a01bbd465f816db00.tar.gz
rockbox-ab5879c5ea3508380a6ef43a01bbd465f816db00.zip
wpsbuild: fix copying of remote font
Change-Id: I6e6b94d077c106555eed548c7a50c8a22e0ee839 Reviewed-on: http://gerrit.rockbox.org/331 Reviewed-by: Thomas Martitz <kugel@rockbox.org>
-rwxr-xr-xwps/wpsbuild.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl
index 52a2f4c01f..a420faddd8 100755
--- a/wps/wpsbuild.pl
+++ b/wps/wpsbuild.pl
@@ -605,8 +605,8 @@ while(<WPS>) {
605 } 605 }
606 foreach my $i ($font, $remotefont) { 606 foreach my $i ($font, $remotefont) {
607 if (defined($i) && $i ne "-") { 607 if (defined($i) && $i ne "-") {
608 copythemefont($font); 608 copythemefont($i);
609 $i = "$rbdir/fonts/$font"; 609 $i = "$rbdir/fonts/$i";
610 } 610 }
611 } 611 }
612 buildcfg(); 612 buildcfg();