diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-16 18:37:30 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-16 18:37:30 +0000 |
commit | 4cf4ea458eb1811161558c203d03964bd34808ab (patch) | |
tree | e8f462550c54f2a14f8c01483c8bee60d0efb274 /ext | |
parent | 022394cfaaa8ec20e603e5da621b1778fd79e4ad (diff) | |
download | perl-4cf4ea458eb1811161558c203d03964bd34808ab.tar.gz |
5005threads didn't work because $Thread::VERSION wasn't
visible. Oops.
p4raw-id: //depot/perl@13054
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Thread/Makefile.PL | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/Thread/Makefile.PL b/ext/Thread/Makefile.PL index fc09e7fa43..a6363620a0 100644 --- a/ext/Thread/Makefile.PL +++ b/ext/Thread/Makefile.PL @@ -1,7 +1,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Thread', - VERSION => '2.00', - MAN3PODS => {} - ); + VERSION_FROM => '../../lib/Thread.pm', + MAN3PODS => {}, +); |