diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-02-18 17:30:50 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-21 09:31:58 +0000 |
commit | f5f95f501c8aacb3d624e683b4b5b8403115ba5d (patch) | |
tree | afde83ef4f5a9e7df7db06f227ef82f29d2b8a12 /meta/recipes-support/libsoup | |
parent | 9473ffc11e586eba6a1cef2e5c8d293695685941 (diff) | |
download | openembedded-core-f5f95f501c8aacb3d624e683b4b5b8403115ba5d.tar.gz openembedded-core-f5f95f501c8aacb3d624e683b4b5b8403115ba5d.tar.bz2 openembedded-core-f5f95f501c8aacb3d624e683b4b5b8403115ba5d.zip |
libsoup-2.4: prevent PACKAGECONFIG dependant package renaming
When built without gnome support, libsoup-2.4 will contain only one
shared lib and will therefore become subject to renaming by
debian.bbclass.
Prevent renaming in order to keep the package name consistent
regardless of whether gnome support is enabled or disabled.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libsoup')
-rw-r--r-- | meta/recipes-support/libsoup/libsoup-2.4_2.52.2.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.52.2.bb b/meta/recipes-support/libsoup/libsoup-2.4_2.52.2.bb index 865c1d71ee..a9d8050265 100644 --- a/meta/recipes-support/libsoup/libsoup-2.4_2.52.2.bb +++ b/meta/recipes-support/libsoup/libsoup-2.4_2.52.2.bb @@ -25,5 +25,11 @@ PACKAGECONFIG[gnome] = "--with-gnome,--without-gnome" EXTRA_OECONF = "--disable-vala" +# When built without gnome support, libsoup-2.4 will contain only one shared lib +# and will therefore become subject to renaming by debian.bbclass. Prevent +# renaming in order to keep the package name consistent regardless of whether +# gnome support is enabled or disabled. +DEBIAN_NOAUTONAME_${PN} = "1" + # glib-networking is needed for SSL, proxies, etc. RRECOMMENDS_${PN} = "glib-networking" |