summaryrefslogtreecommitdiff
path: root/ext/Hash
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-01-13 17:08:36 +0000
committerNicholas Clark <nick@ccl4.org>2009-01-13 17:11:00 +0000
commit550428fe486b18884c31b9382019448ba993d840 (patch)
tree8d4a905a43fea132f875ef74c521d57b40fe8b36 /ext/Hash
parent554fcfb9c528bd89c67e10aef0070471542c0ebe (diff)
downloadperl-550428fe486b18884c31b9382019448ba993d840.tar.gz
ext/Hash/Util/Makefile.PL should not recurse to FieldHash's Makefile.PL
*nix, VMS and Win32 all know how to (and have to) call the latter directly. As is, targets in ext/Hash/Util/FieldHash get called twice, which may result in race conditions, and certainly messes up make clean; make distclean;
Diffstat (limited to 'ext/Hash')
-rw-r--r--ext/Hash/Util/Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Hash/Util/Makefile.PL b/ext/Hash/Util/Makefile.PL
index 7b7c166c75..eee40c5e34 100644
--- a/ext/Hash/Util/Makefile.PL
+++ b/ext/Hash/Util/Makefile.PL
@@ -8,7 +8,7 @@ WriteMakefile(
MAN3PODS => {}, # Pods will be built by installman.
NAME => "Hash::Util",
DEFINE => "-DPERL_EXT",
- DIR => ['FieldHash'],
+ NORECURS => 1, # Hash::Util::FieldHash is treated as distinct.
);
package MY;