diff options
author | Karl Williamson <khw@cpan.org> | 2015-03-16 11:14:12 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-03-19 10:20:39 -0600 |
commit | 8b371338c1359c38e4de8ec65a0b9b884f05e450 (patch) | |
tree | 4d1fedc49b6f0b28841b4e424161e2fef96fa8fe /Makefile.micro | |
parent | 6c0d35ff1e3d608716c812fc4ba0474d9041e7bf (diff) | |
download | perl-8b371338c1359c38e4de8ec65a0b9b884f05e450.tar.gz |
Change name of mro.c
This is to prevent a conflict showing up on z/OS (os390) because this
file's name is the same as one in /ext, and there are functions
cross-referenced between them, and the loader on that platform
can't deal with this.
See http://nntp.perl.org/group/perl.perl5.porters/226612
Diffstat (limited to 'Makefile.micro')
-rw-r--r-- | Makefile.micro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.micro b/Makefile.micro index cd9a9c5833..dedf183f9f 100644 --- a/Makefile.micro +++ b/Makefile.micro @@ -85,8 +85,8 @@ uglobals$(_O): $(H) globals.c INTERN.h perlapi.h $(generated_headers) ugv$(_O): $(HE) gv.c $(CC) $(CCFLAGS) -o $@ $(CFLAGS) gv.c -umro$(_O): $(HE) mro.c - $(CC) $(CCFLAGS) -o $@ $(CFLAGS) mro.c +umro$(_O): $(HE) mro_core.c + $(CC) $(CCFLAGS) -o $@ $(CFLAGS) mro_core.c uhv$(_O): $(HE) hv.c $(CC) $(CCFLAGS) -o $@ $(CFLAGS) hv.c |