From 2cef02ff40f39329fac7faa7a10c3cd643439902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Thu, 27 Jan 2005 08:50:07 +0000 Subject: [PATCH] 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 --- helpcontent2/helpers/createmakefile.pl | 10 +++++----- 1 file 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;