aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-03-04 06:44:56 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-07 00:11:38 +0000
commitafb1d09ceddc33e6ee6916c5f911bf2fd682224b (patch)
treee997d470156a9948ef45bf307743877ee21ba8d6 /scripts
parent463fd5ee26c5037b0f4ecfe4bc6ed48945b3b07e (diff)
downloadopenembedded-core-contrib-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')
-rw-r--r--scripts/lib/recipetool/create_buildsys.py2
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):
lib = res.group(2)
if not lib.startswith('$'):
header = res.group(1)
- libdeps.add((lib, header))
+ libdeps.append((lib, header))
elif keyword == 'AC_PATH_X':
deps.append('libx11')
elif keyword in ('AX_BOOST', 'BOOST_REQUIRE'):