summaryrefslogtreecommitdiff
path: root/tools/buildzip.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildzip.pl')
-rwxr-xr-xtools/buildzip.pl7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl
index 62413acd30..a3c0172773 100755
--- a/tools/buildzip.pl
+++ b/tools/buildzip.pl
@@ -470,8 +470,11 @@ STOP
470 470
471 find(find_copyfile(qr/\.(rock|ovl|lua)/, abs_path("$temp_dir/rocks/")), 'apps/plugins'); 471 find(find_copyfile(qr/\.(rock|ovl|lua)/, abs_path("$temp_dir/rocks/")), 'apps/plugins');
472 472
473 open VIEWERS, "$ROOT/apps/plugins/viewers.config" or 473 # exclude entries for the image file types not supported by the imageviewer for the target.
474 die "can't open viewers.config"; 474 my $viewers = "$ROOT/apps/plugins/viewers.config";
475 my $c="cat $viewers | gcc $cppdef -I. -I$firmdir/export -E -P -include config.h -";
476
477 open VIEWERS, "$c|" or die "can't open viewers.config";
475 my @viewers = <VIEWERS>; 478 my @viewers = <VIEWERS>;
476 close VIEWERS; 479 close VIEWERS;
477 480