[gnome-continuous-yocto/gnomeostree-3.28-rocko: 6578/8267] bitbake: npm fetcher: fix unknown variable name.



commit 98099349e358a9caaec8ec81f0d4abe588909cfe
Author: Ismo Puustinen <ismo puustinen intel com>
Date:   Wed Jun 28 13:19:31 2017 +0300

    bitbake: npm fetcher: fix unknown variable name.
    
    'mirrortarball' is supposed to be a local variable to the function.
    
    (Bitbake rev: a457cbfb1f20a47db3978290921d0708cd96bd70)
    
    Signed-off-by: Ismo Puustinen <ismo puustinen intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 bitbake/lib/bb/fetch2/npm.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/bitbake/lib/bb/fetch2/npm.py b/bitbake/lib/bb/fetch2/npm.py
index 5f79972..f2e7983 100644
--- a/bitbake/lib/bb/fetch2/npm.py
+++ b/bitbake/lib/bb/fetch2/npm.py
@@ -92,7 +92,7 @@ class Npm(FetchMethod):
 
         ud.write_tarballs = ((d.getVar("BB_GENERATE_MIRROR_TARBALLS") or "0") != "0")
         mirrortarball = 'npm_%s-%s.tar.xz' % (ud.pkgname, ud.version)
-        mirrortarball = ud.mirrortarball.replace('/', '-')
+        mirrortarball = mirrortarball.replace('/', '-')
         ud.fullmirror = os.path.join(d.getVar("DL_DIR"), mirrortarball)
         ud.mirrortarballs = [mirrortarball]
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]