diff options
-rw-r--r-- | meta-oe/recipes-multimedia/libmms/libmms_0.6.4.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libmms/libmms_0.6.4.bb b/meta-oe/recipes-multimedia/libmms/libmms_0.6.4.bb index 831394e5c7..668afc8c16 100644 --- a/meta-oe/recipes-multimedia/libmms/libmms_0.6.4.bb +++ b/meta-oe/recipes-multimedia/libmms/libmms_0.6.4.bb | |||
@@ -10,3 +10,11 @@ SRC_URI[md5sum] = "d6b665b335a6360e000976e770da7691" | |||
10 | SRC_URI[sha256sum] = "3c05e05aebcbfcc044d9e8c2d4646cd8359be39a3f0ba8ce4e72a9094bee704f" | 10 | SRC_URI[sha256sum] = "3c05e05aebcbfcc044d9e8c2d4646cd8359be39a3f0ba8ce4e72a9094bee704f" |
11 | 11 | ||
12 | inherit autotools pkgconfig | 12 | inherit autotools pkgconfig |
13 | |||
14 | do_install_append() { | ||
15 | # The GLib dependency was removed in libmms 0.6.3, but the | ||
16 | # "Requires" was not removed from the pkg-config file. Since we | ||
17 | # don't have (and don't want) the RDEPENDS on GLib, we should | ||
18 | # remove the "Requires" line. | ||
19 | sed -i '/^Requires: glib-2\.0$/d' ${D}${libdir}/pkgconfig/libmms.pc | ||
20 | } | ||