diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2020-06-29 17:31:06 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2020-06-29 17:32:17 +0200 |
commit | ddd8fc3d28cd8e668868158049ced7fa3c8c71b8 (patch) | |
tree | ac3241a7d46070a3be4f7d09dd913fd3855dea3f /apt-pkg/deb/debsystem.cc | |
parent | b5faca7a90e1aa25adb8ee69b979d1f4bd7e8d78 (diff) |
Add basic support for the Protected field
This will be mapped to Important for the time being.
Diffstat (limited to 'apt-pkg/deb/debsystem.cc')
-rw-r--r-- | apt-pkg/deb/debsystem.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apt-pkg/deb/debsystem.cc b/apt-pkg/deb/debsystem.cc index 7d4bf7213..eac43c3b7 100644 --- a/apt-pkg/deb/debsystem.cc +++ b/apt-pkg/deb/debsystem.cc @@ -466,8 +466,13 @@ pid_t debSystem::ExecDpkg(std::vector<std::string> const &sArgs, int * const inp /*}}}*/ bool debSystem::MultiArchSupported() const /*{{{*/ { + return AssertFeature("multi-arch"); +} + /*}}}*/ +bool debSystem::AssertFeature(std::string const &feature) /*{{{*/ +{ std::vector<std::string> Args = GetDpkgBaseCommand(); - Args.push_back("--assert-multi-arch"); + Args.push_back("--assert-" + feature); pid_t const dpkgAssertMultiArch = ExecDpkg(Args, nullptr, nullptr, true); if (dpkgAssertMultiArch > 0) { |