[oe-commits] [openembedded-core] 16/25: package_manager: Fix support for NO_RECOMMENDATONS

git at git.openembedded.org git at git.openembedded.org
Wed Aug 9 08:39:04 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 1849ce3bd7c0af055f3e849a6508e746b6a0dca5
Author: Richard Röjfors <richard.rojfors at gmail.com>
AuthorDate: Sun Jul 30 11:12:56 2017 +0200

    package_manager: Fix support for NO_RECOMMENDATONS
    
    When support for dnf was introduced the check of the
    no NO_RECOMMENDATIONS variable got broken.
    
    This fixes the issue by compairing to the string "1"
    rather than the number 1.
    
    Signed-off-by: Richard Röjfors <richard at puffinpack.se>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/lib/oe/package_manager.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 72503eb..518cf8d 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -585,7 +585,7 @@ class RpmPM(PackageManager):
 
         output = self._invoke_dnf((["--skip-broken"] if attempt_only else []) +
                          (["-x", ",".join(exclude_pkgs)] if len(exclude_pkgs) > 0 else []) +
-                         (["--setopt=install_weak_deps=False"] if self.d.getVar('NO_RECOMMENDATIONS') == 1 else []) +
+                         (["--setopt=install_weak_deps=False"] if self.d.getVar('NO_RECOMMENDATIONS') == "1" else []) +
                          (["--nogpgcheck"] if self.d.getVar('RPM_SIGN_PACKAGES') != '1' else ["--setopt=gpgcheck=True"]) +
                          ["install"] +
                          pkgs)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list