COPKGManager: add optional parameter force_configure to installPackage()

This commit is contained in:
2015-02-05 12:26:29 +01:00
parent aad5db705f
commit 0f1a6e7588
2 changed files with 9 additions and 4 deletions

View File

@@ -118,7 +118,7 @@ class COPKGManager : public CMenuTarget
int exec(CMenuTarget* parent, const std::string & actionKey);
static bool hasOpkgSupport();
bool checkUpdates(const std::string & package_name = std::string(), bool show_progress = true);
bool installPackage(const std::string& pkg_name, std::string options = std::string());
bool installPackage(const std::string& pkg_name, std::string options = std::string(), bool force_configure = false);
bool checkSize(const std::string& pkg_name);
};
#endif