How to disable generation of perllocal.pod?
How to disable generation of perllocal.pod?
I hope, a clever option can be specified to --with-perl-options=... to disable the generation of the file. Would would it be? Thanks!
Re: How to disable generation of perllocal.pod?
Answering my own question... The patch below does the trick:
Using "pure_install" instead of "install" target of the Makefile, that is generated from Makefile.PL...
Code: Select all
--- Makefile.in 2007-09-21 12:36:48.000000000 -0400
+++ Makefile.in 2007-10-14 15:52:39.000000000 -0400
@@ -10372,4 +10372,4 @@
@WITH_PERL_DYNAMIC_TRUE@@WITH_PERL_TRUE@install-exec-perl: $(PERLMAKEFILE)
-@WITH_PERL_DYNAMIC_TRUE@@WITH_PERL_TRUE@ cd $(PERLMAGICK) && $(MAKE) CC='@CC@' install
+@WITH_PERL_DYNAMIC_TRUE@@WITH_PERL_TRUE@ cd $(PERLMAGICK) && $(MAKE) CC='@CC@' pure_install