mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
- It's amazing the havoc one little misplaced bracket can cause...
This commit is contained in:
parent
4fd2b80786
commit
bcff952f23
1 changed files with 7 additions and 6 deletions
|
@ -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 */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue