diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-12 15:56:51 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-12 15:57:59 +0100 |
commit | 403f501d5b37ebf0340212b1a7f7c01855cd7b95 (patch) | |
tree | 25e4aeac710091a6b8a8c95685db9a7255ed6d7b /win32/pod.mak | |
parent | 4527a2238fcb956920c7d18b8aa95a3ff49f0fcb (diff) | |
download | perl-403f501d5b37ebf0340212b1a7f7c01855cd7b95.tar.gz |
Move Cwd from lib to ext.
Obviously, it's going to take a bit more work to piece the PathTools
distribution back together.
Diffstat (limited to 'win32/pod.mak')
-rw-r--r-- | win32/pod.mak | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/win32/pod.mak b/win32/pod.mak index 9489c22124..593c701aab 100644 --- a/win32/pod.mak +++ b/win32/pod.mak @@ -14,6 +14,8 @@ converters: $(CONVERTERS) PERL = ..\miniperl.exe REALPERL = ..\perl.exe +ICWD = -I..\ext\Cwd + POD = \ perl.pod \ perl5004delta.pod \ @@ -571,22 +573,22 @@ check: podchecker # Dependencies. pod2latex: pod2latex.PL ../lib/Config.pm - $(PERL) -I../lib pod2latex.PL + $(PERL) -I../lib $(ICWD) pod2latex.PL pod2html: pod2html.PL ../lib/Config.pm - $(PERL) -I ../lib pod2html.PL + $(PERL) -I ../lib $(ICWD) pod2html.PL pod2man: pod2man.PL ../lib/Config.pm - $(PERL) -I ../lib pod2man.PL + $(PERL) -I ../lib $(ICWD) pod2man.PL pod2text: pod2text.PL ../lib/Config.pm - $(PERL) -I ../lib pod2text.PL + $(PERL) -I ../lib $(ICWD) pod2text.PL pod2usage: pod2usage.PL ../lib/Config.pm - $(PERL) -I ../lib pod2usage.PL + $(PERL) -I ../lib $(ICWD) pod2usage.PL podchecker: podchecker.PL ../lib/Config.pm - $(PERL) -I ../lib podchecker.PL + $(PERL) -I ../lib $(ICWD) podchecker.PL podselect: podselect.PL ../lib/Config.pm - $(PERL) -I ../lib podselect.PL + $(PERL) -I ../lib $(ICWD) podselect.PL |