Skip Menu |

This queue is for tickets about the Cache-Memcached-Fast CPAN distribution.

Report information
The Basics
Id: 36074
Status: resolved
Priority: 0/
Queue: Cache-Memcached-Fast

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

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



Subject: Broken Makefile generated with older ExtUtils::MakeMaker
The clean field value in src/Makefile.PL used a multi-line string for FILES list. This will cause ExtUtils::MakeMaker version 6.17 or below to generate a invalid Makefile, because it won't append a continue slash at the end of the line before file list. I have attached a patch to fix this.
Subject: nl.patch
--- Cache-Memcached-Fast-0.10/src/Makefile.PL.old 2008-05-01 17:21:15.000000000 +0800 +++ Cache-Memcached-Fast-0.10/src/Makefile.PL 2008-05-21 20:32:13.000000000 +0800 @@ -14,7 +14,7 @@ INC => '-I.', # e.g., '-I. -I/usr/include/other' OBJECT => 'parse_keyword$(OBJ_EXT) compute_crc32$(OBJ_EXT) $(O_FILES)', - clean => { FILES => 'compute_crc32.c compute_crc32.h + clean => { FILES => 'compute_crc32.c compute_crc32.h\\ parse_keyword.c parse_keyword.h' }, );
From: KROKI [...] cpan.org
On Wed May 21 08:42:29 2008, CHAOSLAW wrote: Show quoted text
> The clean field value in src/Makefile.PL used a multi-line string for > FILES list.
This is fixed in the development tree, and will appear in the next release. You can get the latest version by following "snapshot" link on http://openhack.ru/Cache-Memcached-Fast. Thanks for the report!
Resolved in the upcoming version 0.11.