diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-11-23 10:08:34 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-11-23 10:08:34 +0100 |
commit | e6807d8ab22b761c17f370154d732b3bcf48cd38 (patch) | |
tree | 5d93f909a6d289989b50666f61910ba33f6902aa /Makefile.SH | |
parent | bc4eb4d6f895e86a4afbc016eae943c7546c35f2 (diff) | |
download | perl-e6807d8ab22b761c17f370154d732b3bcf48cd38.tar.gz |
makedef.pl uses Config.pm, so needs a Makefile dependency on it.
Commit 9d6c7f2eccef26a6 changed makedef.pl to use Config.pm
Commit 208d7614b345d1fb refactored makedef.pl to read values from
%Config::Config, instead of reading directly from config.sh
Hence we can replace the dependency on config.sh with one on lib/Config.pm
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-x | Makefile.SH | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH index 318c5abfa0..63d6f2624d 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -723,7 +723,7 @@ PERLEXPORT = perl.exp ;; esac $spitshell >>$Makefile <<'!NO!SUBS!' -perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) +perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp !NO!SUBS! @@ -732,7 +732,7 @@ os2) $spitshell >>$Makefile <<'!NO!SUBS!' MINIPERLEXP = miniperl -perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map +perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def !NO!SUBS! |