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-06 23:52:56 +0000
commit063ed9058a14775f77e7875d4f6ef5719fa03f18 (patch)
tree483eb09cb5b3d577f37ea5bcafbb51603909b9d9 /scripts
parenta82ce3e477a475dccea3837eabacd9e93b873ee6 (diff)
downloadopenembedded-core-contrib-063ed9058a14775f77e7875d4f6ef5719fa03f18.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. 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'):