- 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,15 +155,16 @@ 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(" "));
} }
} }
}
/* store the array contents in temp files /* store the array contents in temp files
waiting for CFLAGS etc to be populated */ waiting for CFLAGS etc to be populated */