diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:02:52 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:02:52 +0100 |
commit | 35e368cee986bcf91a472170f97e79f76065366d (patch) | |
tree | c39ab8beb632ec02b74c8f6908c23985216946f4 /src/task_ar.cc | |
parent | 10dc0902c22ae931fe51c36ea8fc6d2453819477 (diff) |
Rename OutputSystem::Xyz to output_system::xyz
Diffstat (limited to 'src/task_ar.cc')
-rw-r--r-- | src/task_ar.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/task_ar.cc b/src/task_ar.cc index 528e71a..d9548cd 100644 --- a/src/task_ar.cc +++ b/src/task_ar.cc @@ -100,10 +100,10 @@ int TaskAR::runInner() std::string tool; switch(outputSystem()) { - case OutputSystem::Host: + case ctor::output_system::host: tool = getConfiguration(cfg::host_ar, "/usr/bin/ar"); break; - case OutputSystem::Build: + case ctor::output_system::build: tool = getConfiguration(cfg::build_ar, "/usr/bin/ar"); break; } |