diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-05-02 10:41:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-05-02 10:42:45 +0200 |
commit | e606179d5722427bc4137838585b38892e01b328 (patch) | |
tree | ebecbb4be82c8893274820a563da4bbfd740bab6 /scp2 | |
parent | 8e09329ea6e1625cbb9a4b79ad13e462c965b973 (diff) |
tdf#116240: Include --with-help=html in installation sets
...by extending the hackery in helpcontent2/CustomTarget_html.mk (see comment
there). (Ultimately, the gbuild HelpTarget machinery should probably be adapted
to the needs of this new help format, once the old help format is no longer
supported?)
The Perl packaging code finds source files through the "include" paths specified
in instsetoo_native/util/openoffice.lst.in. To avoid potential name clashes,
put the new .filelist files into
workdir/CustomTarget/helpcontent2/help3xsl/filelists/html-help/ sub-directories.
read_filelist in solenv/bin/modules/installer/filelists.pm does not strip white
space following the last item in a file list, but (with HAVE_GNUMAKE_FILE_FUNC)
the gb_HelpTarget_get_translation_target .filelist files (which are then
transformed with sed into the .html .filelist files read by the Perl packaging
code) may contain such trailing white space. So $(strip ...) their content in
solenv/gbuild/HelpTarget.mk.
This is the core part of a change spanning core and helpcontent2.
Change-Id: I82e0093ea2064725327330c5485f8e581573e1f2
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/macros/macro.pl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scp2/macros/macro.pl b/scp2/macros/macro.pl index aa03d4e04b9f..7f54298f9a3e 100644 --- a/scp2/macros/macro.pl +++ b/scp2/macros/macro.pl @@ -188,11 +188,17 @@ sub write_MO_ALL_LANG_EXCEPT_EN_US_AND_QTZ sub write_EXTRA_ALL_GOOD_HELP_LOCALIZATIONS_LANG { my $first = 1; + my $source; + if ($ENV{'ENABLE_HTMLHELP'} eq 'TRUE') { + $source = 'html-help'; # found in instsetoo_native/util/openoffice.lst.in's {filelistpath}/CustomTarget/helpcontent2/help3xsl/filelists + } else { + $source = 'HelpTarget'; + } print OUTFILE "#define EXTRA_ALL_GOOD_HELP_LOCALIZATIONS_LANG(name) "; foreach $lang (@helplangs) { print OUTFILE ";" unless $first; $first = 0; - print OUTFILE "\\\n\tName ($lang) = EXTRAFILELISTNAME(HelpTarget/,name,/$lang)"; + print OUTFILE "\\\n\tName ($lang) = EXTRAFILELISTNAME($source/,name,/$lang)"; } print OUTFILE "\n\n"; } |