diff options
| author | Julian Andres Klode <julian.klode@canonical.com> | 2020-02-26 14:29:06 +0100 |
|---|---|---|
| committer | Julian Andres Klode <julian.klode@canonical.com> | 2020-02-26 14:30:03 +0100 |
| commit | da7de99f8473ae0ac90c90fad3eee80f5f72889a (patch) | |
| tree | 795744c3038a9d6e9c7cae5ef69e4095c0d1fc94 /apt-pkg/deb/debsystem.cc | |
| parent | d77c1c7db760ae21d703b8b0f129379e54918bf7 (diff) | |
pkgsystem: Drop more virtual workaround shenanigans
Diffstat (limited to 'apt-pkg/deb/debsystem.cc')
| -rw-r--r-- | apt-pkg/deb/debsystem.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/deb/debsystem.cc b/apt-pkg/deb/debsystem.cc index 0c7e9ff39..225761e9d 100644 --- a/apt-pkg/deb/debsystem.cc +++ b/apt-pkg/deb/debsystem.cc @@ -419,7 +419,7 @@ pid_t debSystem::ExecDpkg(std::vector<std::string> const &sArgs, int * const inp return dpkg; } /*}}}*/ -bool debSystem::SupportsMultiArch() /*{{{*/ +bool debSystem::MultiArchSupported() const /*{{{*/ { std::vector<std::string> Args = GetDpkgBaseCommand(); Args.push_back("--assert-multi-arch"); @@ -440,7 +440,7 @@ bool debSystem::SupportsMultiArch() /*{{{*/ return false; } /*}}}*/ -std::vector<std::string> debSystem::SupportedArchitectures() /*{{{*/ +std::vector<std::string> debSystem::ArchitecturesSupported() const /*{{{*/ { std::vector<std::string> archs; { |
