summaryrefslogtreecommitdiffstats
path: root/helpers/create_ilst.pl
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/create_ilst.pl')
-rw-r--r--helpers/create_ilst.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/helpers/create_ilst.pl b/helpers/create_ilst.pl
index c6b9789007..b1cd682835 100644
--- a/helpers/create_ilst.pl
+++ b/helpers/create_ilst.pl
@@ -35,7 +35,8 @@ if ( -d $startdir ) {
find(sub{push @files, $File::Find::name if (($File::Find::name=~/\.png$/));},$startdir);
foreach ( @files ) { s#.*$startdir_regexp[\\/]##; };
for (sort(@files)) {
- ($pre eq "helpimg") ? ($prefix = "%GLOBALRES%/") : ($prefix = "%HELPCONTENT%/");
+ # it's now all in one place so no need to distinguish GLOBALRES vs. HELPCONTENT
+ $prefix = "%MODULE%/";
print "$prefix" . "$pre/$_\n";
}
} else {