From 2fe294f127fa89c5011f1c4e832633e86a935883 Mon Sep 17 00:00:00 2001 From: Xuefer Date: Thu, 14 Jun 2007 06:00:58 +0000 Subject: [PATCH] fix for new build system git-svn-id: svn://svn.lighttpd.net/xcache/trunk@412 c26eb9a1-5813-0410-bd6c-c2e55f420ca7 --- config.w32 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.w32 b/config.w32 index 49af645..2325a12 100644 --- a/config.w32 +++ b/config.w32 @@ -79,9 +79,9 @@ if (PHP_XCACHE != "no") { MFO.Close(); var mfo = file_get_contents(mfofile); - mfo.match(/(.*\\xcache)\\xcache.obj/); + mfo.match(/(.*)\\xcache.obj:/); var builddir = RegExp.$1; - mfo.match(/(.*\$\(CC\).* )\/c.*\\xcache\\xcache.c.*/i); + mfo.match(/(.*\$\(CC\).* )\/c.*\\xcache.c.*/i); var ccrule = RegExp.$1; MFO = FSO.OpenTextFile(mfofile, 8);