Skip Menu |

This queue is for tickets about the Gnome2 CPAN distribution.

Report information
The Basics
Id: 89291
Status: resolved
Priority: 0/
Queue: Gnome2

People
Owner: XAOC [...] cpan.org
Requestors: vlasenko [...] imath.kiev.ua
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.043
Fixed in: (no value)



Subject: use mkdir -p
use mkdir -p as in patch below because mkdir fails: mkdir: cannot create directory 'blib/lib/Gnome2': File exists --- Gnome2-1.043/Makefile.PL~ 2013-10-01 10:06:54.000000000 +0000 +++ Gnome2-1.043/Makefile.PL 2013-10-07 09:33:20.116237888 +0000 @@ -182,7 +182,7 @@ ) . " \$(INST_LIB)/\$(FULLEXT)/enums.pod : \$(BLIB_DONE) maps podifyenums.pl - mkdir blib/lib/\$(NAME) + mkdir -p blib/lib/\$(NAME) \$(PERLRUNINST) -M\$(NAME) podifyenums.pl \$(NAME) maps > \$@ "; }
Subject: Gnome2-1.043-bugfix.patch
--- Gnome2-1.043/Makefile.PL~ 2013-10-01 10:06:54.000000000 +0000 +++ Gnome2-1.043/Makefile.PL 2013-10-07 09:33:20.116237888 +0000 @@ -182,7 +182,7 @@ ) . " \$(INST_LIB)/\$(FULLEXT)/enums.pod : \$(BLIB_DONE) maps podifyenums.pl - mkdir blib/lib/\$(NAME) + mkdir -p blib/lib/\$(NAME) \$(PERLRUNINST) -M\$(NAME) podifyenums.pl \$(NAME) maps > \$@ "; }
On Mon Oct 07 06:48:29 2013, VIY wrote: Show quoted text
> use mkdir -p as in patch below because mkdir fails: > mkdir: cannot create directory 'blib/lib/Gnome2': File exists
Hi, This issue has already been discussed (and fixed) in RT#89188. Please download and apply the attached patch for the fix for this issue and the original issue. The attached patch is Torsten's original patch from RT#89188, plus removal of the 'mkdir' command that I added during the last Gnome2 release. Ticket status: resolved Thanks, Brian
Subject: gnome2_rt89188.07Oct2013.0940.diff
diff --git a/Makefile.PL b/Makefile.PL index 4661962..78a4f93 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -181,8 +181,7 @@ sub MY::postamble { 'PERL_GNOME_VFS' => $build_reqs{'perl-Gnome2-VFS'}, ) . " -\$(INST_LIB)/\$(FULLEXT)/enums.pod : \$(BLIB_DONE) maps podifyenums.pl - mkdir blib/lib/\$(NAME) +\$(INST_LIB)/\$(FULLEXT)/enums.pod : \$(BLIB_DONE) \$(INST_LIB)/\$(FULLEXT)/ maps podifyenums.pl \$(PERLRUNINST) -M\$(NAME) podifyenums.pl \$(NAME) maps > \$@ "; }