From c7ee27c9237e2586f6b06845cd3b1e6f686d5cfe Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 26 May 2004 05:01:17 +0000 Subject: [PATCH] Dont try splitting gconvs in glibc when PACKAGES is empty. BKrev: 40b4249dRrITpSFGcetiyRRrzhjNaw --- glibc/glibc_2.3.2.oe | 3 +++ glibc/glibc_cvs.oe | 3 +++ 2 files changed, 6 insertions(+) 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") diff --git a/glibc/glibc_cvs.oe b/glibc/glibc_cvs.oe index df80e95100..1fbaf9df0d 100644 --- a/glibc/glibc_cvs.oe +++ b/glibc/glibc_cvs.oe @@ -198,6 +198,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") -- 2.39.5