diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-19 17:15:18 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-19 17:15:18 +0100 |
commit | f54fcafc498511d9a430cf4ef0aca22ac67b9575 (patch) | |
tree | 81078e09d1e7d551738b9492c564d34943bb2c20 /win32 | |
parent | 38cd195c665c35bd946e2265512bec7d92019088 (diff) | |
download | perl-f54fcafc498511d9a430cf4ef0aca22ac67b9575.tar.gz |
lib/unicore/mktables needs to get File::Spec from ext/Cwd/lib
It was only parallel make order roulette that it was working on my machine.
VMS doesn't have this problem, as it's invoking mktables from the top level,
using its -C option to change directory, and VMS's $(MINIPERL) has an -I option
for [.ext.Cwd.lib]
Maybe all platforms should swap to using the -C approach.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 2 | ||||
-rw-r--r-- | win32/makefile.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile b/win32/Makefile index b1d14180dc..5c53cb8d1a 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1234,7 +1234,7 @@ inst_lib : $(CONFIGPM) $(UNIDATAFILES) : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs cd ..\lib\unicore && \ - ..\$(MINIPERL) -I.. mktables -check $@ $(FIRSTUNIFILE) + ..\$(MINIPERL) -I.. -I..\..\ext\Cwd\lib mktables -check $@ $(FIRSTUNIFILE) minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES) $(XCOPY) $(MINIPERL) ..\t\$(NULL) diff --git a/win32/makefile.mk b/win32/makefile.mk index eb55f9a97b..faf080a9a4 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1563,7 +1563,7 @@ inst_lib : $(CONFIGPM) $(UNIDATAFILES) .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs cd ..\lib\unicore && \ - ..\$(MINIPERL) -I.. mktables + ..\$(MINIPERL) -I.. -I..\..\ext\Cwd\lib mktables minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils $(XCOPY) $(MINIPERL) ..\t\$(NULL) |