summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2026-02-05 18:07:25 +0100
committerKhem Raj <raj.khem@gmail.com>2026-02-06 10:06:26 -0800
commite5cd8b0c37481cc60eb302a47e628bbd8eb8bb18 (patch)
treefbd90544cfba9aa8c83e35799ee43a7424e2eada
parent1608ba5b9dff5da769ca096ce789b0d4dbe3a2d6 (diff)
downloadmeta-openembedded-e5cd8b0c37481cc60eb302a47e628bbd8eb8bb18.tar.gz
media-types: fix RPROVIDES
Instead of PROVIDING mime-support, it should RPROVIDE the same package. It allows adding "mime-support" to IMAGE_INSTALL to get a similar behavior than before mime-support recipe was split into two differently named recipes. Also, rename the recipe's folder to match the recipe name. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/media-types/media-types_14.0.0.bb (renamed from meta-oe/recipes-support/mime-support/media-types_14.0.0.bb)6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/mime-support/media-types_14.0.0.bb b/meta-oe/recipes-support/media-types/media-types_14.0.0.bb
index 137d508ebe..af91a584bd 100644
--- a/meta-oe/recipes-support/mime-support/media-types_14.0.0.bb
+++ b/meta-oe/recipes-support/media-types/media-types_14.0.0.bb
@@ -35,5 +35,7 @@ INHIBIT_DEFAULT_DEPS = "1"
35 35
36# Debian used to have mime-support package which was media-types and 36# Debian used to have mime-support package which was media-types and
37# mailcap recipes in one. 37# mailcap recipes in one.
38PROVIDES += "mime-support" 38PACKAGES += "mime-support"
39RDEPENDS:mime-support = "mailcap" 39RPROVIDES:${PN} += "mime-support"
40RDEPENDS:mime-support += "${PN} mailcap"
41ALLOW_EMPTY:mime-support = "1"