You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2002/05/23 05:30:21 UTC

cvs commit: modperl/apaci mod_perl.config.sh

dougm       02/05/22 20:30:21

  Modified:    apaci    mod_perl.config.sh
  Log:
  another bleedperl/hpux/ld hack
  
  Revision  Changes    Path
  1.26      +1 -1      modperl/apaci/mod_perl.config.sh
  
  Index: mod_perl.config.sh
  ===================================================================
  RCS file: /home/cvs/modperl/apaci/mod_perl.config.sh,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- mod_perl.config.sh	6 Jul 2001 20:08:36 -0000	1.25
  +++ mod_perl.config.sh	23 May 2002 03:30:21 -0000	1.26
  @@ -145,7 +145,7 @@
   $ldopts =~ s,(-bE:)(perl\.exp),$1$Config{archlibexp}/CORE/$2, if($^O eq "aix");
   
   #replace -Wl args meant for cc with args for ld
  -if ($ARGV[0] eq "DSO" and $^O eq "hpux" and $Config{ld} eq "ld") {
  +if ($ARGV[0] eq "DSO" and $^O eq "hpux" and $Config{ld} =~ /ld$/) {
       while ($ldopts =~ s/-Wl,(\S+)/$1/) {
   	my $cp = $1;
   	(my $repl = $cp) =~ s/,/ /g;