summaryrefslogtreecommitdiff
path: root/wps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-03-18 21:17:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-03-18 21:17:05 +0000
commit2624b558cefe8f677949573c6bfb93ae11783c79 (patch)
tree8711646ce20eb3d0b91fdea46d77a16cff94f244 /wps
parentc279335ed24f64a55bd1c1679656ed90d687e190 (diff)
downloadrockbox-2624b558cefe8f677949573c6bfb93ae11783c79.tar.gz
rockbox-2624b558cefe8f677949573c6bfb93ae11783c79.zip
only use the LCD size for bitmap LCDs so that we don't get the WPSes
for recorder included for the player builds git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9102 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'wps')
-rwxr-xr-xwps/wpsbuild.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl
index d6cff68d3a..548b46974f 100755
--- a/wps/wpsbuild.pl
+++ b/wps/wpsbuild.pl
@@ -55,8 +55,10 @@ STOP
55 else { 55 else {
56 print GCC <<STOP 56 print GCC <<STOP
57\#include "config.h" 57\#include "config.h"
58#ifdef HAVE_LCD_BITMAP
58Height: LCD_HEIGHT 59Height: LCD_HEIGHT
59Width: LCD_WIDTH 60Width: LCD_WIDTH
61#endif
60STOP 62STOP
61; 63;
62} 64}
@@ -192,7 +194,7 @@ while(<WPS>) {
192 } 194 }
193 195
194 if(!$rheight || !$rwidth) { 196 if(!$rheight || !$rwidth) {
195 printf STDERR "wpsbuild notice: No %sLCD size, skipping $wps\n", 197 #printf STDERR "wpsbuild notice: No %sLCD size, skipping $wps\n",
196 $isrwps?"remote ":""; 198 $isrwps?"remote ":"";
197 $within = 0; 199 $within = 0;
198 next; 200 next;