diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2015-06-16 14:59:40 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 11:47:40 +0100 |
commit | f98c8490099a02c42306e1671579631a61c9df73 (patch) | |
tree | b3e660accb009ccf2d81f099664b60ec086a68fb /meta-yocto/conf/distro | |
parent | a06a5ae684fc6baff7c041e07b066620d18e52ea (diff) | |
download | poky-f98c8490099a02c42306e1671579631a61c9df73.tar.gz |
distro/package_regex.inc: Fix dbus version pattern
D-Bus version x.y.z is unstable when y is odd.
(From meta-yocto rev: afeff9cf964fe0616fe1439d76ddd90f0d62b8a1)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto/conf/distro')
-rw-r--r-- | meta-yocto/conf/distro/include/package_regex.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-yocto/conf/distro/include/package_regex.inc b/meta-yocto/conf/distro/include/package_regex.inc index 4aeae8968c..f26bc13899 100644 --- a/meta-yocto/conf/distro/include/package_regex.inc +++ b/meta-yocto/conf/distro/include/package_regex.inc | |||
@@ -157,3 +157,8 @@ REGEX_pn-gtk-engines = "${GNOME2_STABLE}" | |||
157 | REGEX_pn-glib-networking = "${GNOME_STABLE}" | 157 | REGEX_pn-glib-networking = "${GNOME_STABLE}" |
158 | REGEX_pn-librsvg = "${GNOME_STABLE}" | 158 | REGEX_pn-librsvg = "${GNOME_STABLE}" |
159 | REGEX_pn-libsoup-2.4 = "${GNOME_STABLE}" | 159 | REGEX_pn-libsoup-2.4 = "${GNOME_STABLE}" |
160 | |||
161 | # not GNOME related but uses same even-minor-release-is-stable logic | ||
162 | REGEX_pn-dbus = "${GNOME_STABLE}" | ||
163 | REGEX_pn-dbus-test = "${GNOME_STABLE}" | ||
164 | |||