diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-08-02 13:11:25 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-08-02 13:11:25 +0000 |
commit | baa5ec3e1ed08dadc6d937f36f6734c1d56e48cb (patch) | |
tree | 9b8d9a1fc6a6252d12d3c96e1e9ed08035fbdba7 /Cross | |
parent | 4fb7dc7d27d1f8d119e6f67f04999384a2f7c2f9 (diff) | |
download | perl-baa5ec3e1ed08dadc6d937f36f6734c1d56e48cb.tar.gz |
Cross-compilation makefile fails to copy Config_heavy.pl
(noticed by Alexandre Jousset <mid@gtmp.org>)
p4raw-id: //depot/perl@28652
Diffstat (limited to 'Cross')
-rw-r--r-- | Cross/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cross/Makefile b/Cross/Makefile index da9ce10693..b6d6b1d426 100644 --- a/Cross/Makefile +++ b/Cross/Makefile @@ -53,7 +53,7 @@ perl: $(TOPDIR)/generate_config_sh config.sh-$(SYS) > $(TOPDIR)/../config.sh cd $(TOPDIR)/.. ; ./Configure -S ; make depend ; make ; make more - cd $(TOPDIR)/.. ; mkdir -p fake_config_library ; cp lib/Config.pm fake_config_library + cd $(TOPDIR)/.. ; mkdir -p fake_config_library ; cp lib/Config.pm lib/Config_heavy.pl fake_config_library cd $(TOPDIR)/.. ; $(MAKE) more2 "PERLRUN=/usr/bin/perl -I$(TOPDIR)/../fake_config_library -MConfig" cd $(TOPDIR)/.. ; $(MAKE) more3 "PERLRUN=/usr/bin/perl -I$(TOPDIR)/../fake_config_library -MConfig" cd $(TOPDIR)/.. ; $(MAKE) more4 "PERLRUN=/usr/bin/perl -I$(TOPDIR)/../fake_config_library -MConfig" |