summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/recipetool/create_buildsys.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create_buildsys.py b/scripts/lib/recipetool/create_buildsys.py
index 067be18c13..e914e53aab 100644
--- a/scripts/lib/recipetool/create_buildsys.py
+++ b/scripts/lib/recipetool/create_buildsys.py
@@ -571,7 +571,7 @@ class AutotoolsRecipeHandler(RecipeHandler):
571 deps.append('sqlite3') 571 deps.append('sqlite3')
572 elif keyword == 'AX_LIB_TAGLIB': 572 elif keyword == 'AX_LIB_TAGLIB':
573 deps.append('taglib') 573 deps.append('taglib')
574 elif keyword == 'AX_PKG_SWIG': 574 elif keyword in ['AX_PKG_SWIG', 'AC_PROG_SWIG']:
575 deps.append('swig-native') 575 deps.append('swig-native')
576 elif keyword == 'AX_PROG_XSLTPROC': 576 elif keyword == 'AX_PROG_XSLTPROC':
577 deps.append('libxslt-native') 577 deps.append('libxslt-native')
@@ -651,6 +651,7 @@ class AutotoolsRecipeHandler(RecipeHandler):
651 'AX_LIB_SQLITE3', 651 'AX_LIB_SQLITE3',
652 'AX_LIB_TAGLIB', 652 'AX_LIB_TAGLIB',
653 'AX_PKG_SWIG', 653 'AX_PKG_SWIG',
654 'AC_PROG_SWIG',
654 'AX_PROG_XSLTPROC', 655 'AX_PROG_XSLTPROC',
655 'AC_PYTHON_DEVEL', 656 'AC_PYTHON_DEVEL',
656 'AX_PYTHON_DEVEL', 657 'AX_PYTHON_DEVEL',