Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] recipetool bugfix
@ 2016-03-03 17:44 Paul Eggleton
  2016-03-03 17:44 ` [PATCH 1/1] recipetool: create: fix support for AX_CHECK_LIBRARY Paul Eggleton
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Eggleton @ 2016-03-03 17:44 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 092984669d8590627cfb188a0aa00244e22c4671:

  e2fsprogs: do not enable non-stable features by default (2016-03-03 10:48:46 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib paule/recipetool-fix
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/recipetool-fix

Paul Eggleton (1):
  recipetool: create: fix support for AX_CHECK_LIBRARY

 scripts/lib/recipetool/create_buildsys.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.5.0



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] recipetool: create: fix support for AX_CHECK_LIBRARY
  2016-03-03 17:44 [PATCH 0/1] recipetool bugfix Paul Eggleton
@ 2016-03-03 17:44 ` Paul Eggleton
  0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggleton @ 2016-03-03 17:44 UTC (permalink / raw)
  To: openembedded-core

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>
---
 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'):
-- 
2.5.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-03-03 17:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-03 17:44 [PATCH 0/1] recipetool bugfix Paul Eggleton
2016-03-03 17:44 ` [PATCH 1/1] recipetool: create: fix support for AX_CHECK_LIBRARY Paul Eggleton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox