Kaydet (Commit) 61afc9f0 authored tarafından Jan Holesovsky's avatar Jan Holesovsky

Revert "gcc-wrapper: warn on invalid path names."

This reverts commit 5f014581.

Breaks the tinderboxes, I am afraid.
üst ca6a1d6f
......@@ -87,11 +87,7 @@ string processccargs(vector<string> rawargs) {
for(vector<string>::iterator i = rawargs.begin(); i != rawargs.end(); ++i) {
args.append(" ");
if(i->find("/") == 0) {
cerr << "Error: absolute unix path passed that looks like an option: '" << *i << "'";
args.append(*i);
}
else if(*i == "-o") {
if(*i == "-o") {
// TODO: handle more than just exe output
++i;
size_t dot=(*i).find_last_of(".");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment