You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
473 B

  1. perl: Work around recompile failures
  2. Apparently, recompiling/relinking fails under some circumstances. This
  3. patch has been reported to work around that issue.
  4. --- a/Makefile.SH
  5. +++ b/Makefile.SH
  6. @@ -818,7 +818,7 @@ $(LIBPERL): $& $(obj) $(DYNALOADER) $(LI
  7. true)
  8. $spitshell >>$Makefile <<'!NO!SUBS!'
  9. rm -f $@
  10. - $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
  11. + $(CC) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
  12. !NO!SUBS!
  13. case "$osname" in
  14. aix)