summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-08-08 00:03:21 +0200
committerMichael Stahl <mstahl@redhat.com>2012-08-08 00:08:07 +0200
commit15f0f96da43c177fb40bc4a54062b35eb365d6e9 (patch)
tree30537c0a3236ab3eeafa28b3c4a891b87e62ba8a
parent6d192bc688ae4acdfb9b18c6ead156f629c9d1b2 (diff)
concat-deps: those silly drive letters indicate absolute paths
Change-Id: If1d43f8f5e61f52c554bcdcf7f86639f1ea60046
-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);
}