]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
convert-overrides.py: remove base_dep_prepend and autotools_dep_prepend exception
authorMartin Jansa <Martin.Jansa@gmail.com>
Fri, 30 Jul 2021 09:25:45 +0000 (11:25 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 30 Jul 2021 09:55:07 +0000 (10:55 +0100)
* the functions were renamed in:
  https://git.openembedded.org/openembedded-core/commit/?id=9d002acae720b0a8e96a6734424a142b86880461

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/contrib/convert-overrides.py

index 68ae356083ed5c7325f3ce34da336b3cd31a7d7b..057758f1bbb1b02d3c9ef3e6b28ba93e9b926c04 100755 (executable)
@@ -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])