summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSimon Cozens <simon@netthink.co.uk>2001-03-07 13:59:28 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-07 14:48:57 +0000
commit770fab92d753b1aa3cfd2d1bbafe0e666303a23a (patch)
treee8d4ce75c5ad17fb80880aa3923cb759804c6c75 /lib
parentb815e894e1fc82c49b9845b9884350949cec1752 (diff)
downloadperl-770fab92d753b1aa3cfd2d1bbafe0e666303a23a.tar.gz
Re: [PATCH: 5.6.1 trial2] DynaLoading for OS/390 build option
Message-ID: <20010307135928.A21620@pembro26.pmb.ox.ac.uk> In order to allow MakeMaker to build correct Makefiles, you need to change the order of the arguments in MM_Unix.pm as well. (Unless you have C89_CCMODE set, but we're trying to be POSIXly correct) Thanks to Merijn Broeren for tracking this down. p4raw-id: //depot/perl@9067
Diffstat (limited to 'lib')
-rw-r--r--lib/ExtUtils/MM_Unix.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm
index e043b3cb3f..0f441d0e82 100644
--- a/lib/ExtUtils/MM_Unix.pm
+++ b/lib/ExtUtils/MM_Unix.pm
@@ -1097,8 +1097,8 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP) $(INST_ARCHAUTODIR)/.exists
push(@m,' $(RM_F) $@
');
- push(@m,' LD_RUN_PATH="$(LD_RUN_PATH)" $(LD) -o $@ '.$ldrun.' $(LDDLFLAGS) '.$ldfrom.
- ' $(OTHERLDFLAGS) $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) $(PERL_ARCHIVE_AFTER) $(EXPORT_LIST)');
+ push(@m,' LD_RUN_PATH="$(LD_RUN_PATH)" $(LD) '.$ldrun.' $(LDDLFLAGS) '.$ldfrom.
+ ' $(OTHERLDFLAGS) -o $@ $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) $(PERL_ARCHIVE_AFTER) $(EXPORT_LIST)');
push @m, '
$(CHMOD) $(PERM_RWX) $@
';