diff --git a/android/.classpath b/android/.classpath
index 1b4b1eed7e..0ca188f976 100644
--- a/android/.classpath
+++ b/android/.classpath
@@ -3,5 +3,6 @@
+
diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl
index ce4e0e9dd3..6df35df585 100755
--- a/wps/wpsbuild.pl
+++ b/wps/wpsbuild.pl
@@ -589,20 +589,19 @@ while() {
# mangles some filenames
if (defined($backdrop) && $backdrop ne "-") {
copybackdrop();
- $backdrop = normalize($backdrop);
+ $backdrop = "$rbdir/" . normalize($backdrop);
}
foreach my $i ($iconset, $viewericon, $remoteiconset, $remoteviewericon) {
if (defined($i) && $i ne "-") {
copythemeicon($i);
+ $i = "$rbdir/$i";
}
}
- if (defined($font) && $font ne "-") {
- copythemefont($font);
- $font = "$rbdir/fonts/$font";
- }
- if (defined($remotefont) && $remotefont ne "-") {
- copythemefont($remotefont);
- $remotefont = "$rbdir/fonts/$remotefont";
+ foreach my $i ($font, $remotefont) {
+ if (defined($i) && $i ne "-") {
+ copythemefont($font);
+ $i = "$rbdir/fonts/$font";
+ }
}
buildcfg();
copywps();