From: Steph Fox Date: Wed, 9 Jul 2008 15:47:06 +0000 (+0000) Subject: - It's amazing the havoc one little misplaced bracket can cause... X-Git-Tag: php-5.3.0alpha1~417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bcff952f23fa1b711c63914346184f79d7b0c02c;p=php - It's amazing the havoc one little misplaced bracket can cause... --- diff --git a/win32/build/projectgen.js b/win32/build/projectgen.js index edec4dde39..5d7fed601a 100644 --- a/win32/build/projectgen.js +++ b/win32/build/projectgen.js @@ -155,13 +155,14 @@ function generate_dsp_filelist(ext, ext_dir, files) } DSP_HEADERS = DSP_HEADERS.concat(libheaders.split(" ")); - } - sources = newarr[1].replace(/\\/g, ""); - sources = sources.replace(ws, " "); - path = path ? " ./" + path + "/" : " ./"; - sources = sources.replace(/ /g, path); - DSP_SOURCES = DSP_SOURCES.concat(sources.split(" ")); + sources = newarr[1].replace(/\\/g, ""); + sources = sources.replace(ws, " "); + path = path ? " ./" + path + "/" : " ./"; + sources = sources.replace(/ /g, path); + + DSP_SOURCES = DSP_SOURCES.concat(sources.split(" ")); + } } }