summaryrefslogtreecommitdiff
path: root/scp2/macros
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2009-08-04 10:36:31 +0200
committersb <sb@openoffice.org>2009-08-04 10:36:31 +0200
commitd6d81df3a19561b448f40a329b3443faac74166c (patch)
treec110e96b457e4f18f29e396a99c1b0e4ad0a3a2d /scp2/macros
parentebed0cbef9b919d5362d90d99e133de9a7da2ad5 (diff)
#i101955# consolidating xcs/xcu files in xcd files (for now in new postprocess/packregistry); extended configmgr2 to search for multiple xcd files per layer; removed some (relative, wrong) DOCTYPE SYSTEM paths from xcu files to avoid xsltproc warnings; extended scp2 EXTRA_ALL_LANG to work with extensions other than zip (i.e., xcd)
Diffstat (limited to 'scp2/macros')
-rw-r--r--scp2/macros/macro.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scp2/macros/macro.pl b/scp2/macros/macro.pl
index 53bf047d9e98..43a00f4fe411 100644
--- a/scp2/macros/macro.pl
+++ b/scp2/macros/macro.pl
@@ -138,9 +138,9 @@ sub write_DIR_IDENT_ALL_LANG
sub write_EXTRA_ALL_LANG
{
- print OUTFILE "#define EXTRA_ALL_LANG(name) ";
+ print OUTFILE "#define EXTRA_ALL_LANG(name,ext) ";
foreach $lang (@completelangiso) {
- print OUTFILE "\\\n\tName ($lang) = EXTRAFILENAME(name,_$lang)";
+ print OUTFILE "\\\n\tName ($lang) = CONFIGLANGFILENAME(name,_$lang,ext)";
print OUTFILE "; " if ( $lang ne $completelangiso[$#completelangiso]);
}
print OUTFILE "\n\n";