diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-26 05:01:17 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-26 05:01:17 +0000 |
commit | c7ee27c9237e2586f6b06845cd3b1e6f686d5cfe (patch) | |
tree | 5fcd0977cf5db2dbfa5d0fa1762b91e7b6df8574 /glibc/glibc_2.3.2.oe | |
parent | 32cceafdb07307581ea9d0b82e3b4453589a7394 (diff) |
Dont try splitting gconvs in glibc when PACKAGES is empty.
BKrev: 40b4249dRrITpSFGcetiyRRrzhjNaw
Diffstat (limited to 'glibc/glibc_2.3.2.oe')
-rw-r--r-- | glibc/glibc_2.3.2.oe | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/glibc/glibc_2.3.2.oe b/glibc/glibc_2.3.2.oe index 92a0316da1..ca40a7b480 100644 --- a/glibc/glibc_2.3.2.oe +++ b/glibc/glibc_2.3.2.oe @@ -274,6 +274,9 @@ python package_do_split_gconvs () { oe.note("package requested not splitting gconvs") return + if not oe.data.getVar('PACKAGES', d, 1): + return + libdir = oe.data.getVar('libdir', d, 1) if not libdir: oe.error("libdir not defined") |