diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-03-04 06:44:56 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-07 00:11:38 +0000 |
commit | afb1d09ceddc33e6ee6916c5f911bf2fd682224b (patch) | |
tree | e997d470156a9948ef45bf307743877ee21ba8d6 /scripts/lib/recipetool | |
parent | 463fd5ee26c5037b0f4ecfe4bc6ed48945b3b07e (diff) | |
download | poky-afb1d09ceddc33e6ee6916c5f911bf2fd682224b.tar.gz |
recipetool: create: fix support for AX_CHECK_LIBRARY
Clearly I didn't test this part of the code - lists don't have an "add"
method. Needless to say I have tested it now.
(From OE-Core rev: 063ed9058a14775f77e7875d4f6ef5719fa03f18)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/recipetool')
-rw-r--r-- | scripts/lib/recipetool/create_buildsys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create_buildsys.py b/scripts/lib/recipetool/create_buildsys.py index 43dcca3c5b..0228269cf9 100644 --- a/scripts/lib/recipetool/create_buildsys.py +++ b/scripts/lib/recipetool/create_buildsys.py | |||
@@ -516,7 +516,7 @@ class AutotoolsRecipeHandler(RecipeHandler): | |||
516 | lib = res.group(2) | 516 | lib = res.group(2) |
517 | if not lib.startswith('$'): | 517 | if not lib.startswith('$'): |
518 | header = res.group(1) | 518 | header = res.group(1) |
519 | libdeps.add((lib, header)) | 519 | libdeps.append((lib, header)) |
520 | elif keyword == 'AC_PATH_X': | 520 | elif keyword == 'AC_PATH_X': |
521 | deps.append('libx11') | 521 | deps.append('libx11') |
522 | elif keyword in ('AX_BOOST', 'BOOST_REQUIRE'): | 522 | elif keyword in ('AX_BOOST', 'BOOST_REQUIRE'): |