Skip Menu |

This queue is for tickets about the PerlIO-locale CPAN distribution.

Report information
The Basics
Id: 35676
Status: resolved
Priority: 0/
Queue: PerlIO-locale

People
Owner: RGARCIA [...] cpan.org
Requestors: KRYDE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.04
Fixed in: (no value)



Subject: attempting to remove encoding.so on "make realclean"
Doing a "make realclean" attempted to delete the shared library from PerlIO::encoding, rm: cannot remove `/usr/lib/perl/5.8/auto/PerlIO/encoding/encoding.so': Permission denied It'd be nice if it didn't do that. I guess that file is in $(OBJECT) so gets treated as generated and thus to be removed. Maybe it should be in LIBS or LDDLFLAGS or something.
This will be fixed in the next version by this change : commit fc73e0b705e78c8d07b0a5359638c3e4d8b87118 Author: Rafael Garcia-Suarez <rgarciasuarez@gmail.com> Date: Wed May 7 13:43:00 2008 +0200 Don't try to remove perl's encoding.so when doing realclean diff --git a/Makefile.PL b/Makefile.PL index b07dc70..db25224 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -33,7 +33,7 @@ print "Found encoding.so at $encoding_so\n"; WriteMakefile( AUTHOR => 'Rafael Garcia-Suarez <rgarciasuarez@gmail.com>', - OBJECT => "$encoding_so locale.o", + MYEXTLIB => $encoding_so, NAME => 'PerlIO::locale', PREREQ_PM => { 'PerlIO::encoding' => 0 }, VERSION_FROM => 'locale.pm',