summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/concat-deps.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c
index e68093b3703c..4c2aaf44adbc 100644
--- a/solenv/bin/concat-deps.c
+++ b/solenv/bin/concat-deps.c
@@ -720,7 +720,8 @@ char* token;
token = strtok(line," ");
while(token != NULL)
{
- if(*token == ':' || *token == '\\' || *token == '/' || *token == '$')
+ if(*token == ':' || *token == '\\' || *token == '/' || *token == '$'
+ || ':' == token[1])
{
fputs(token, stdout);
}