From: Michael Andres Date: Tue, 2 Jul 2013 11:29:16 +0000 (+0200) Subject: Add armv7hl to armv6hl compat to be in sync with libsolv. X-Git-Tag: upstream/14.27.0~270 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8aa50d730e7207fddac0f216dde3d86bee9529ed;p=platform%2Fupstream%2Flibzypp.git Add armv7hl to armv6hl compat to be in sync with libsolv. --- diff --git a/zypp/Arch.cc b/zypp/Arch.cc index 62a9db7..8b0cd03 100644 --- a/zypp/Arch.cc +++ b/zypp/Arch.cc @@ -326,7 +326,7 @@ namespace zypp defCompatibleWith( _armv6l(), _noarch(),_armv3l(),_armv4l(),_armv4tl(),_armv5l(),_armv5tel(),_armv5tejl() ); defCompatibleWith( _armv6hl(), _noarch() ); defCompatibleWith( _armv7l(), _noarch(),_armv3l(),_armv4l(),_armv4tl(),_armv5l(),_armv5tel(),_armv5tejl(),_armv6l() ); - defCompatibleWith( _armv7hl(), _noarch() ); + defCompatibleWith( _armv7hl(), _noarch(),_armv6hl() ); defCompatibleWith( _armv7nhl(), _noarch(),_armv7hl() ); defCompatibleWith( _armv7thl(), _noarch(),_armv7hl() ); defCompatibleWith( _armv7tnhl(), _noarch(),_armv7hl(),_armv7nhl(),_armv7thl() );