Skip Menu |

This queue is for tickets about the Win32API-Registry CPAN distribution.

Report information
The Basics
Id: 31849
Status: resolved
Priority: 0/
Queue: Win32API-Registry

People
Owner: Nobody in particular
Requestors: RURBAN [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.28
Fixed in: (no value)



Subject: GNU make fails, missing TAB
cygwin and mingw make fails, because the clean and realclean Makefile targets miss the required <TAB>. Attached patch fixes that. Checking if your kit is complete... Looks good Writing Makefile for Win32API::Registry Makefile:980: *** missing separator. Stop. BLM/Win32API-Registry-0.28.tar.gz /usr/bin/make -- NOT OK Running make test Can't test without successful make -- Reini Urban
Subject: Win32API-Registry-0.28.patch
--- Win32API-Registry-0.28/Makefile.PL.orig 2007-01-28 08:36:21.000000000 +0100 +++ Win32API-Registry-0.28/Makefile.PL 2007-12-24 16:32:27.781250000 +0100 @@ -134,9 +134,9 @@ push @m, " clean :: - $self->{RM_F} @clean\n" if @clean; + $self->{RM_F} @clean\n" if @clean; push @m, " realclean :: - $self->{RM_F} @realclean\n" if @realclean; + $self->{RM_F} @realclean\n" if @realclean; return join('',@m); }
On Mon Dec 24 10:39:02 2007, RURBAN wrote: Show quoted text
> cygwin and mingw make fails, because the clean and realclean Makefile > targets miss the required <TAB>. > Attached patch fixes that. > > Checking if your kit is complete... > Looks good > Writing Makefile for Win32API::Registry > Makefile:980: *** missing separator. Stop. > BLM/Win32API-Registry-0.28.tar.gz > /usr/bin/make -- NOT OK > Running make test > Can't test without successful make >
Thanks. Patch applied. New version 0.29
Fixed in version 0.29