From bcff952f23fa1b711c63914346184f79d7b0c02c Mon Sep 17 00:00:00 2001 From: Steph Fox Date: Wed, 9 Jul 2008 15:47:06 +0000 Subject: [PATCH] - It's amazing the havoc one little misplaced bracket can cause... --- win32/build/projectgen.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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(" ")); + } } } -- 2.50.1