From 063ed9058a14775f77e7875d4f6ef5719fa03f18 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Fri, 4 Mar 2016 06:44:56 +1300 Subject: 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 Signed-off-by: Richard Purdie --- scripts/lib/recipetool/create_buildsys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/lib') 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'): -- cgit 1.2.3-korg