summaryrefslogtreecommitdiff
path: root/task_ar.cc
diff options
context:
space:
mode:
Diffstat (limited to 'task_ar.cc')
-rw-r--r--task_ar.cc13
1 files changed, 12 insertions, 1 deletions
diff --git a/task_ar.cc b/task_ar.cc
index c133875..58223ad 100644
--- a/task_ar.cc
+++ b/task_ar.cc
@@ -178,11 +178,22 @@ std::string TaskAR::flagsString() const
std::string flagsStr;
for(const auto& flag : config.ldflags)
{
- if(!flagsStr.empty())
+ if(flag != config.ldflags[0])
{
flagsStr += " ";
}
flagsStr += flag;
}
+ flagsStr += "\n";
+
+ for(const auto& dep : config.depends)
+ {
+ if(dep != config.depends[0])
+ {
+ flagsStr += " ";
+ }
+ flagsStr += dep;
+ }
+
return flagsStr;
}