diff options
Diffstat (limited to 'meta/classes/go-vendor.bbclass')
-rw-r--r-- | meta/classes/go-vendor.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/go-vendor.bbclass b/meta/classes/go-vendor.bbclass index 1bbb99ac79..38ea69ab50 100644 --- a/meta/classes/go-vendor.bbclass +++ b/meta/classes/go-vendor.bbclass | |||
@@ -156,7 +156,7 @@ python do_go_vendor() { | |||
156 | shutil.copy2(rootdirLicese, subdirLicense) | 156 | shutil.copy2(rootdirLicese, subdirLicense) |
157 | 157 | ||
158 | # Copy vendor manifest | 158 | # Copy vendor manifest |
159 | modules_txt_src = os.path.join(d.getVar('WORKDIR'), "modules.txt") | 159 | modules_txt_src = os.path.join(d.getVar('UNPACKDIR'), "modules.txt") |
160 | bb.debug(1, "cp %s --> %s" % (modules_txt_src, vendor_dir)) | 160 | bb.debug(1, "cp %s --> %s" % (modules_txt_src, vendor_dir)) |
161 | shutil.copy2(modules_txt_src, vendor_dir) | 161 | shutil.copy2(modules_txt_src, vendor_dir) |
162 | 162 | ||