On 8/4/06, Alex Riesen <raa.lkml@xxxxxxxxx> wrote:
At the moment, the only known example of such environment is Cygwin with ActiveState Perl: Makefile, generated by the MakeMaker from ActiveState perl distribution is not usable by cygwin's gmake.
Damn. Please add attached patch on top of the previous one. I broke the normal, xs-supported, platforms. diff --git a/Makefile b/Makefile index 9cfd677..5d58eca 100644 --- a/Makefile +++ b/Makefile @@ -591,7 +591,9 @@ all: $(MAKE) -C templates ifndef NO_PERL_XS -all: perl/Makefile +.PHONY: perl-dir +all: perl-dir +perl-dir: perl/Makefile $(MAKE) -C perl endif
From ff9c9341341d88b1d3ef55141cab14db45d55cf7 Mon Sep 17 00:00:00 2001 From: Alex Riesen <raa.lkml@xxxxxxxxx> Date: Fri, 4 Aug 2006 15:59:11 +0200 Subject: [PATCH] fix dependencies for xs-supported platforms Signed-off-by: Alex Riesen <ariesen@xxxxxxxxxxxxxxxx> --- Makefile | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 9cfd677..5d58eca 100644 --- a/Makefile +++ b/Makefile @@ -591,7 +591,9 @@ all: $(MAKE) -C templates ifndef NO_PERL_XS -all: perl/Makefile +.PHONY: perl-dir +all: perl-dir +perl-dir: perl/Makefile $(MAKE) -C perl endif -- 1.4.2.rc2.g6534