diff options
| author | Julian Andres Klode <jak@debian.org> | 2020-02-26 14:51:05 +0000 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2020-02-26 14:51:05 +0000 |
| commit | a096b580694cb36f29cdbce8f1db797a08e36709 (patch) | |
| tree | 8a1bf6106868761042c80e04fdeff1077779ac18 /apt-pkg/deb/debsystem.cc | |
| parent | b31040e9c1441a2a7296ce3ff12f5052fc522366 (diff) | |
| parent | da01dabb86396a1391f081fa54a806e2d7b62133 (diff) | |
Merge branch 'pu/cleanups' into 'master'
Cleanup ABI - make stuff virtual, etc
See merge request apt-team/apt!106
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; { |
