[oe-commits] [openembedded-core] 04/17: recipetool: create: fix support for AX_CHECK_LIBRARY

git at git.openembedded.org git at git.openembedded.org
Mon Mar 7 00:12:16 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 063ed9058a14775f77e7875d4f6ef5719fa03f18
Author: Paul Eggleton <paul.eggleton at linux.intel.com>
AuthorDate: Fri Mar 4 06:44:56 2016 +1300

    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 at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/lib/recipetool/create_buildsys.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/recipetool/create_buildsys.py b/scripts/lib/recipetool/create_buildsys.py
index 43dcca3..0228269 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'):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list