- It's amazing the havoc one little misplaced bracket can cause...

This commit is contained in:
Steph Fox 2008-07-09 15:47:06 +00:00
parent 4fd2b80786
commit bcff952f23

View file

@ -155,13 +155,14 @@ function generate_dsp_filelist(ext, ext_dir, files)
} }
DSP_HEADERS = DSP_HEADERS.concat(libheaders.split(" ")); DSP_HEADERS = DSP_HEADERS.concat(libheaders.split(" "));
}
sources = newarr[1].replace(/\\/g, ""); sources = newarr[1].replace(/\\/g, "");
sources = sources.replace(ws, " "); sources = sources.replace(ws, " ");
path = path ? " ./" + path + "/" : " ./"; path = path ? " ./" + path + "/" : " ./";
sources = sources.replace(/ /g, path); sources = sources.replace(/ /g, path);
DSP_SOURCES = DSP_SOURCES.concat(sources.split(" "));
DSP_SOURCES = DSP_SOURCES.concat(sources.split(" "));
}
} }
} }