diff options
Diffstat (limited to 'meta/classes/debian.bbclass')
-rw-r--r-- | meta/classes/debian.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/debian.bbclass b/meta/classes/debian.bbclass index 0afe9fcc39..8f6e7d88cf 100644 --- a/meta/classes/debian.bbclass +++ b/meta/classes/debian.bbclass | |||
@@ -16,7 +16,7 @@ do_package_write_rpm[rdeptask] = "do_package" | |||
16 | python debian_package_name_hook () { | 16 | python debian_package_name_hook () { |
17 | import glob, copy, stat, errno, re | 17 | import glob, copy, stat, errno, re |
18 | 18 | ||
19 | workdir = bb.data.getVar('WORKDIR', d, 1) | 19 | pkgdest = bb.data.getVar('PKGDEST', d, 1) |
20 | packages = bb.data.getVar('PACKAGES', d, 1) | 20 | packages = bb.data.getVar('PACKAGES', d, 1) |
21 | 21 | ||
22 | def socrunch(s): | 22 | def socrunch(s): |
@@ -45,7 +45,7 @@ python debian_package_name_hook () { | |||
45 | sonames = [] | 45 | sonames = [] |
46 | has_bins = 0 | 46 | has_bins = 0 |
47 | has_libs = 0 | 47 | has_libs = 0 |
48 | pkg_dir = os.path.join(workdir, "install", orig_pkg) | 48 | pkg_dir = os.path.join(pkgdest, orig_pkg) |
49 | for root, dirs, files in os.walk(pkg_dir): | 49 | for root, dirs, files in os.walk(pkg_dir): |
50 | if bin_re.match(root) and files: | 50 | if bin_re.match(root) and files: |
51 | has_bins = 1 | 51 | has_bins = 1 |