From a0cd18ff5405b63b8296b8ef1fc2a488b906f576 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 19 Aug 2014 13:43:18 +0100 Subject: package: Disable runtime mapping of RPROVIDES/RCONFLICTS/RREPLACES It doesn't really make sense to run the remapping code on these variables. If specific renaming is needed, it should be applied manually. This means that the debian RPROVIDES of the original package name can be preserved. There was also a bug report about this on the OE-Core mailing list recently where someone else ran into this problem too. Signed-off-by: Richard Purdie --- meta/classes/package.bbclass | 3 --- 1 file changed, 3 deletions(-) (limited to 'meta') diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 1298758e13..0ff5370587 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -2021,7 +2021,4 @@ def mapping_rename_hook(d): runtime_mapping_rename("RDEPENDS", pkg, d) runtime_mapping_rename("RRECOMMENDS", pkg, d) runtime_mapping_rename("RSUGGESTS", pkg, d) - runtime_mapping_rename("RPROVIDES", pkg, d) - runtime_mapping_rename("RREPLACES", pkg, d) - runtime_mapping_rename("RCONFLICTS", pkg, d) -- cgit 1.2.3-korg