diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-07-30 11:25:45 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-30 10:55:13 +0100 |
commit | b4d63248f0a6767bd1e518e5a0995873f9fe0757 (patch) | |
tree | 28e1f0eb36b21a3d43c8821e78e76fc3d4c22da1 /scripts/contrib | |
parent | 1a1bb6ce519618a7104f9fc7ce6591e9837c8c92 (diff) | |
download | poky-b4d63248f0a6767bd1e518e5a0995873f9fe0757.tar.gz |
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
(From OE-Core rev: 43b7cbfb46701a130c248842426370372c88553b)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-x | scripts/contrib/convert-overrides.py | 6 |
1 files changed, 0 insertions, 6 deletions
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): | |||
102 | skip = True | 102 | skip = True |
103 | if "ptest_append" in line or "ptest_remove" in line or "ptest_prepend" in line: | 103 | if "ptest_append" in line or "ptest_remove" in line or "ptest_prepend" in line: |
104 | skip = False | 104 | skip = False |
105 | if "base_dep_prepend" in line and line.startswith("BASEDEPENDS_class"): | ||
106 | line = line.replace("BASEDEPENDS_class", "BASEDEPENDS:class") | ||
107 | skip = True | ||
108 | if "autotools_dep_prepend" in line and line.startswith("DEPENDS_prepend"): | ||
109 | line = line.replace("DEPENDS_prepend", "DEPENDS:prepend") | ||
110 | skip = True | ||
111 | for sub in subs: | 105 | for sub in subs: |
112 | if sub in line: | 106 | if sub in line: |
113 | line = line.replace(sub, subs[sub]) | 107 | line = line.replace(sub, subs[sub]) |