From 8829ae3de6dc62fce6c6eaa5d03bdd210ebceaba Mon Sep 17 00:00:00 2001 From: Marcel Denia Date: Thu, 10 Dec 2015 22:40:21 +0100 Subject: [PATCH] perl: Work around recompile failures Apparently, recompiling/relinking fails under some circumstances. This patch has been reported to work around that issue. Signed-off-by: Marcel Denia --- lang/perl/patches/310-recompile-hack.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lang/perl/patches/310-recompile-hack.patch diff --git a/lang/perl/patches/310-recompile-hack.patch b/lang/perl/patches/310-recompile-hack.patch new file mode 100644 index 000000000..05a8e9b09 --- /dev/null +++ b/lang/perl/patches/310-recompile-hack.patch @@ -0,0 +1,16 @@ +perl: Work around recompile failures + +Apparently, recompiling/relinking fails under some circumstances. This +patch has been reported to work around that issue. + +--- a/Makefile.SH ++++ b/Makefile.SH +@@ -818,7 +818,7 @@ $(LIBPERL): $& $(obj) $(DYNALOADER) $(LI + true) + $spitshell >>$Makefile <<'!NO!SUBS!' + rm -f $@ +- $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs) ++ $(CC) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs) + !NO!SUBS! + case "$osname" in + aix)