diff options
-rw-r--r-- | solenv/bin/concat-deps.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c index ddbaf2463dc4..44d83f195459 100644 --- a/solenv/bin/concat-deps.c +++ b/solenv/bin/concat-deps.c @@ -846,16 +846,9 @@ static inline void print_fullpaths(char* line) end = token + 2; } } - else if(*token == ':' || *token == '\\' || *token == '/' || - *token == '$' || ':' == token[1]) - { - if(fwrite(token, token_len, 1, stdout) != 1) - abort(); - fputc(' ', stdout); - } else { - if(fwrite(token, end - token, 1, stdout) != 1) + if (fwrite(token, token_len, 1, stdout) != 1) abort(); fputc(' ', stdout); } |