summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorSteph Fox <sfox@php.net>2008-07-09 15:47:06 +0000
committerSteph Fox <sfox@php.net>2008-07-09 15:47:06 +0000
commitbcff952f23fa1b711c63914346184f79d7b0c02c (patch)
treee9992b43039562661f5039a9b221a5a9f094697c /win32
parent4fd2b807869945a3c49aa7f36873c1f906026038 (diff)
downloadphp-git-bcff952f23fa1b711c63914346184f79d7b0c02c.tar.gz
- It's amazing the havoc one little misplaced bracket can cause...
Diffstat (limited to 'win32')
-rw-r--r--win32/build/projectgen.js13
1 files 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(" "));
+ }
}
}