summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-11-23 10:08:34 +0100
committerNicholas Clark <nick@ccl4.org>2011-11-23 10:08:34 +0100
commite6807d8ab22b761c17f370154d732b3bcf48cd38 (patch)
tree5d93f909a6d289989b50666f61910ba33f6902aa
parentbc4eb4d6f895e86a4afbc016eae943c7546c35f2 (diff)
downloadperl-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
-rwxr-xr-xMakefile.SH4
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!