[gnome-continuous-yocto/gnomeostree-3.28-rocko: 7095/8267] package_manager: Fix support for NO_RECOMMENDATONS



commit 0a3bb8b8275a37acfacfe9cd76fa726c28c232c8
Author: Richard Röjfors <richard rojfors gmail com>
Date:   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.
    
    (From OE-Core rev: 1849ce3bd7c0af055f3e849a6508e746b6a0dca5)
    
    Signed-off-by: Richard Röjfors <richard puffinpack se>
    Signed-off-by: Ross Burton <ross burton intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 meta/lib/oe/package_manager.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
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)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]