All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] bitbake-layers fix
@ 2015-02-25 15:29 Paul Eggleton
  2015-02-25 15:29 ` [PATCH 1/1] bitbake-layers: fix wildcard support in remove-layer Paul Eggleton
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Eggleton @ 2015-02-25 15:29 UTC (permalink / raw)
  To: bitbake-devel

The following change since commit 8a5c83c953c1e541704fe979e90d9d3be66e9ffd:

  toasterui: fix ETA calculation (2015-02-24 23:35:39 +0000)

is available in the git repository at:

  git://git.yoctoproject.org/poky-contrib paule/bitbake-layers-fix
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/bitbake-layers-fix

Paul Eggleton (1):
  bitbake-layers: fix wildcard support in remove-layer

 bin/bitbake-layers | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.9.3



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

* [PATCH 1/1] bitbake-layers: fix wildcard support in remove-layer
  2015-02-25 15:29 [PATCH 0/1] bitbake-layers fix Paul Eggleton
@ 2015-02-25 15:29 ` Paul Eggleton
  0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggleton @ 2015-02-25 15:29 UTC (permalink / raw)
  To: bitbake-devel

The recent refactoring caused use of wildcards to trigger a traceback
because the old variable name was being used.

Fixes [YOCTO #7367].

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 bin/bitbake-layers | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/bitbake-layers b/bin/bitbake-layers
index a86ad1c..89662c7 100755
--- a/bin/bitbake-layers
+++ b/bin/bitbake-layers
@@ -119,7 +119,7 @@ Removes the specified layer from bblayers.conf
             return 1
 
         if args.layerdir.startswith('*'):
-            layerdir = dirname
+            layerdir = args.layerdir
         else:
             layerdir = os.path.abspath(args.layerdir)
         (_, notremoved) = bb.utils.edit_bblayers_conf(bblayers_conf, None, layerdir)
-- 
1.9.3



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

end of thread, other threads:[~2015-02-25 15:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-25 15:29 [PATCH 0/1] bitbake-layers fix Paul Eggleton
2015-02-25 15:29 ` [PATCH 1/1] bitbake-layers: fix wildcard support in remove-layer Paul Eggleton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.