diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2016-11-18 12:21:23 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-05-12 13:46:08 +0200 |
commit | 1d77c8a706d248fd757d0558cb101b068c87e820 (patch) | |
tree | f20c18f7b9a2a7f5516ed10ab31aa0e52c9614a5 /helpers | |
parent | 0c6dfb77b57ed50e9cbe6f093e698929c4e5740d (diff) |
Move processing of help-specific images to helpcontent
Change-Id: I4370c7ab41184a59bb92e8df49f2fe3ca84c9c8c
Reviewed-on: https://gerrit.libreoffice.org/30958
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/create_ilst.pl | 3 |
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 { |