From 43b7cbfb46701a130c248842426370372c88553b Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 30 Jul 2021 11:25:45 +0200 Subject: convert-overrides.py: remove base_dep_prepend and autotools_dep_prepend exception * the functions were renamed in: https://git.openembedded.org/openembedded-core/commit/?id=9d002acae720b0a8e96a6734424a142b86880461 Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- scripts/contrib/convert-overrides.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'scripts/contrib') diff --git a/scripts/contrib/convert-overrides.py b/scripts/contrib/convert-overrides.py index 68ae356083..057758f1bb 100755 --- a/scripts/contrib/convert-overrides.py +++ b/scripts/contrib/convert-overrides.py @@ -102,12 +102,6 @@ def processfile(fn): skip = True if "ptest_append" in line or "ptest_remove" in line or "ptest_prepend" in line: skip = False - if "base_dep_prepend" in line and line.startswith("BASEDEPENDS_class"): - line = line.replace("BASEDEPENDS_class", "BASEDEPENDS:class") - skip = True - if "autotools_dep_prepend" in line and line.startswith("DEPENDS_prepend"): - line = line.replace("DEPENDS_prepend", "DEPENDS:prepend") - skip = True for sub in subs: if sub in line: line = line.replace(sub, subs[sub]) -- cgit 1.2.3-korg