diff options
Diffstat (limited to 'task_ar.cc')
-rw-r--r-- | task_ar.cc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -146,12 +146,12 @@ int TaskAR::runInner() std::string tool; switch(outputSystem()) { - case OutputSystem::Target: - tool = getConfiguration(cfg::target_ar, "/usr/bin/ar"); - break; - case OutputSystem::BuildHost: + case OutputSystem::Host: tool = getConfiguration(cfg::host_ar, "/usr/bin/ar"); break; + case OutputSystem::Build: + tool = getConfiguration(cfg::build_ar, "/usr/bin/ar"); + break; } return execute(tool, args, settings.verbose > 0); |