diff options
author | Phil Blundell <pb@pbcl.net> | 2011-05-17 13:31:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-17 15:14:45 +0100 |
commit | 594d886f09c339fe6de29c5431cad2db971cb4f3 (patch) | |
tree | e542fc69d97f173ded57272f2d975c07bf68769c /meta/classes | |
parent | 8b32cd92a149f9572cb35611bf20a4e2bf6ddcef (diff) | |
download | poky-594d886f09c339fe6de29c5431cad2db971cb4f3.tar.gz |
image.bbclass: use soft assignment for LDCONFIGDEPEND
This allows distros that don't want ldconfig to turn it off.
(From OE-Core rev: cd9662ff326de05332afabea3ec35bbbd861687c)
Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index b2325b3a6d..346dd5edc3 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -23,7 +23,7 @@ PID = "${@os.getpid()}" | |||
23 | 23 | ||
24 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 24 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
25 | 25 | ||
26 | LDCONFIGDEPEND = "ldconfig-native:do_populate_sysroot" | 26 | LDCONFIGDEPEND ?= "ldconfig-native:do_populate_sysroot" |
27 | LDCONFIGDEPEND_linux-uclibc = "" | 27 | LDCONFIGDEPEND_linux-uclibc = "" |
28 | LDCONFIGDEPEND_linux-uclibceabi = "" | 28 | LDCONFIGDEPEND_linux-uclibceabi = "" |
29 | 29 | ||