diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-20 14:43:16 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-20 15:02:09 +0100 |
commit | 9ba38f625c0ac7c12d548b20a8aef410f2f2db67 (patch) | |
tree | 79ef6d286e52e66c1288f2d4d4e0d12a729a7d57 /Makefile.SH | |
parent | 2f4049bb95f8658e3406d8081c1fd575ef5da89a (diff) | |
download | perl-9ba38f625c0ac7c12d548b20a8aef410f2f2db67.tar.gz |
The pod convertors chdir post BEGIN-time, so don't need an absolute path for lib.
In fact, I don't see why they need to chdir at all. Or still need most of the
self-extraction logic, now that we have MakeMaker. (Yes, the code is *that*
old.)
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index 477610a286..8fd6a2866f 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -962,7 +962,7 @@ lib/re.pm: ext/re/re.pm $(plextract): miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p $(dynamic_ext) @-rm -f $@ - $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -I"`pwd`/lib" $@.PL + $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib $@.PL x2p/s2p: miniperl$(EXE_EXT) $(CONFIGPM) $(dynamic_ext) x2p/s2p.PL cd x2p; $(LDLIBPTH) $(MAKE) s2p |