diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-01-27 08:50:07 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-01-27 08:50:07 +0000 |
commit | 2cef02ff40f39329fac7faa7a10c3cd643439902 (patch) | |
tree | af8aeb755b1dba3ff442735533545d27f55d45f3 | |
parent | 89407a919ef62ed770ec4f20ec29f1c12269257a (diff) |
INTEGRATION: CWS helpcl (1.6.2); FILE MERGED
2005/01/17 12:13:19 hjs 1.6.2.1: #i40787# changed makefiles for compile_while_link process
-rw-r--r-- | helpcontent2/helpers/createmakefile.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/helpcontent2/helpers/createmakefile.pl b/helpcontent2/helpers/createmakefile.pl index 80962b9372..611913062f 100644 --- a/helpcontent2/helpers/createmakefile.pl +++ b/helpcontent2/helpers/createmakefile.pl @@ -89,13 +89,13 @@ for $d(@dirs) { } if ($status =~ /(DEPRECATED|PUBLISH)/i) { ($p2=$package) =~ s,/,\$/,gis; - push @{$module}, $p2.'$/'.$n.'.hzip'; - push @files2, ' '.$n.'.hzip '; + push @{$module}, $p2.'$/'.$n.'.xhp'; + push @files2, ' '.$n.'.xhp '; } } else { ($p2=$package) =~ s,/,\$/,gis; - push @{$module}, $p2.'$/'.$n.'.hzip'; - push @files2, ' '.$n.'.hzip '; + push @{$module}, $p2.'$/'.$n.'.xhp'; + push @files2, ' '.$n.'.xhp '; } } @@ -109,7 +109,7 @@ for $d(@dirs) { $prj = '..$/' x ((split "/", $helpdir) -1); $prj = $prj . ".."; - $hzipfiles = join "\\\n", sort @files2; + $xhpfiles = join "\\\n", sort @files2; ($makefile = $tmpl) =~ s/%([^%]*)%/$$1/gise; |