summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/contrib/convert-overrides.py6
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):
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])