From: Michael Andres Date: Wed, 16 Sep 2009 14:19:32 +0000 (+0200) Subject: Fix zyppers installRecommends option not following the zypp.conf setting (bnc #539579). X-Git-Tag: 1.2.6~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d071ccf547dd9dd5c33de8e742046673b3157787;p=platform%2Fupstream%2Fzypper.git Fix zyppers installRecommends option not following the zypp.conf setting (bnc #539579). --- diff --git a/package/zypper.changes b/package/zypper.changes index 82a3feb..346d6a8 100644 --- a/package/zypper.changes +++ b/package/zypper.changes @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Sep 16 16:13:47 CEST 2009 - ma@suse.de + +- Fix zyppers installRecommends option not following the zypp.conf + setting. (bnc #539579) + +------------------------------------------------------------------- Thu Sep 10 12:57:44 CEST 2009 - jkupec@suse.cz - Fixed wrong table column width computation causing excessive diff --git a/src/Config.cc b/src/Config.cc index ad25dce..c216c5c 100644 --- a/src/Config.cc +++ b/src/Config.cc @@ -134,7 +134,7 @@ void Config::read(const string & file) s = augeas.getOption(ConfigOption::SOLVER_INSTALL_RECOMMENDS.asString()); if (s.empty()) - solver_installRecommends = ZConfig::instance().solver_onlyRequires(); + solver_installRecommends = !ZConfig::instance().solver_onlyRequires(); else solver_installRecommends = str::strToBool(s, true);