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 /Makefile.SH | |
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 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index b29542aa81..deb544446c 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -970,7 +970,7 @@ x2p/s2p: miniperl$(EXE_EXT) $(CONFIGPM) $(dynamic_ext) x2p/s2p.PL unidatafiles $(unidatafiles): uni.data uni.data: miniperl$(EXE_EXT) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext) - cd lib/unicore && $(LDLIBPTH) $(RUN) ../../miniperl$(EXE_EXT) -I../../lib mktables -w + cd lib/unicore && $(LDLIBPTH) $(RUN) ../../miniperl$(EXE_EXT) -I../../lib -I../../ext/Cwd/lib mktables -w touch uni.data # perl$(EXE_EXT) and ext because buildtoc uses Text::Wrap uses re |