In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/6711cb4f90cfacd285b7fabbb5337493678fc628?hp=261d007a5e77381a4a921bbdfc9adbe51c1c2964>
- Log ----------------------------------------------------------------- commit 6711cb4f90cfacd285b7fabbb5337493678fc628 Author: Tony Cook <[email protected]> Date: Wed Nov 12 16:46:48 2014 +1100 [perl #123163] use the original link order unless on os390 ----------------------------------------------------------------------- Summary of changes: Makefile.SH | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Makefile.SH b/Makefile.SH index 5f630fa..f3fea9a 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -930,7 +930,20 @@ lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl $(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl -@rm -f miniperl.xok +!NO!SUBS! + + case $osname in + os390) $spitshell >>$Makefile <<'!NO!SUBS!' $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(LLIBPERL) $(static_ext) `cat ext.libs` $(libs) +!NO!SUBS! + ;; + *) $spitshell >>$Makefile <<'!NO!SUBS!' + $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) +!NO!SUBS! + ;; + esac + + $spitshell >>$Makefile <<'!NO!SUBS!' # Microperl. This is just a convenience thing if one happens to # build also the full Perl and therefore the real big Makefile: -- Perl5 Master Repository
