Re: [Module-build-general] 4th (undocumented) argument to ExtUtils::Install::install
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <ke...@ma...> - 2003-02-10 05:19:23
|
On Sunday, February 9, 2003, at 08:48 PM, Dave Rolsky wrote: > On Sun, 9 Feb 2003, Ken Williams wrote: > >>> Are you really sure? On my system, I copied >>> /usr/local/share/perl/5.8.0/Module/Build/Base.pm to >>> /usr/share/perl/5.8.0/Module/Build/Base.pm >>> >>> If I then changed Base.pm and did "./Build install uninst=1" it >>> worked >>> fine. >> >> >> Well, it looks like my ExtUtils::Install is broken. I just did the >> same thing under MakeMaker and it didn't work there either. I've got >> version 1.31 of EU::I installed, which is the same as what's in the >> EU::MM CVS repository right now. > > I have 1.30. That may explain it. Either that, or it's allergic to me. On a different machine with EU::I 1.28, I get sporadic behavior. Note the 'ls' at the end of this indicating at least one shadow file that should have been removed, but only a couple of shadows were actually removed. ======================================================================== == [www:~/src/AI-Categorizer] ken> perl Build.PL config='sitearch=/home/ken/lib/i386-linux' .... build and test ... [www:~/src/AI-Categorizer] ken> Build install uninst=1 Useless use of a variable in void context at /usr/lib/perl5/5.6.1/ExtUtils/Install.pm line 267. Warning: You do not have permissions to install into /usr/lib/perl5/site_perl/5.6.1 at /usr/lib/perl5/5.6.1/ExtUtils/Install.pm line 85. Installing /home/ken/lib/i386-linux/auto/AI/Categorizer/FeatureVector/FastDot/ FastDot.bs Installing /home/ken/lib/i386-linux/auto/AI/Categorizer/FeatureVector/FastDot/ FastDot.so Files found in blib/arch: installing files in blib/lib into architecture dependent library tree Installing /home/ken/lib/i386-linux/AI/Categorizer.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Category.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Collection.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Document.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Experiment.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/FeatureSelector.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/FeatureVector.pm Unlinking /home/ken/lib/AI/Categorizer/FeatureVector.pm (shadowing?) Installing /home/ken/lib/i386-linux/AI/Categorizer/Hypothesis.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/KnowledgeSet.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/ObjectSet.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Storable.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Util.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Collection/Files.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Collection/DBI.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Collection/DBI2.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Collection/InMemory.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Collection/SingleFile.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Document/SMART.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Document/ScoredFeatures.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Document/Text.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Document/XML.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/FeatureSelector/DocFrequency.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/FeatureVector/FastDot.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/Boolean.pm Unlinking /home/ken/lib/AI/Categorizer/Learner/Boolean.pm (shadowing?) Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/DecisionTree.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/Guesser.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/KNN.pm Unlinking /home/ken/lib/AI/Categorizer/Learner/KNN.pm (shadowing?) Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/NNetTC.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/NaiveBayes.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/Rocchio.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/SVM.pm Installing /home/ken/lib/i386-linux/AI/Categorizer/Learner/Weka.pm [www:~/src/AI-Categorizer] ken> ls ~/lib/AI Categorizer/ Categorizer.pm [www:~/src/AI-Categorizer] ken> perl -MExtUtils::Install -le 'print $ExtUtils::Install::VERSION' 1.28 ======================================================================== == -Ken |