summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/recipetool/create_buildsys.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/lib/recipetool/create_buildsys.py b/scripts/lib/recipetool/create_buildsys.py
index 7fedb2a917..544dae32db 100644
--- a/scripts/lib/recipetool/create_buildsys.py
+++ b/scripts/lib/recipetool/create_buildsys.py
@@ -294,6 +294,8 @@ class AutotoolsRecipeHandler(RecipeHandler):
294 unmappedlibs.append(lib) 294 unmappedlibs.append(lib)
295 elif keyword == 'AC_PATH_X': 295 elif keyword == 'AC_PATH_X':
296 deps.append('libx11') 296 deps.append('libx11')
297 elif keyword in ('AX_BOOST', 'BOOST_REQUIRE'):
298 deps.append('boost')
297 elif keyword == 'AC_INIT': 299 elif keyword == 'AC_INIT':
298 if extravalues is not None: 300 if extravalues is not None:
299 res = ac_init_re.match(value) 301 res = ac_init_re.match(value)
@@ -332,6 +334,8 @@ class AutotoolsRecipeHandler(RecipeHandler):
332 'AC_PATH_PROG', 334 'AC_PATH_PROG',
333 'AC_CHECK_LIB', 335 'AC_CHECK_LIB',
334 'AC_PATH_X', 336 'AC_PATH_X',
337 'AX_BOOST',
338 'BOOST_REQUIRE',
335 'AC_INIT', 339 'AC_INIT',
336 'AM_INIT_AUTOMAKE', 340 'AM_INIT_AUTOMAKE',
337 'define(', 341 'define(',