From: Chris Larson Date: Thu, 16 Sep 2004 20:27:11 +0000 (+0000) Subject: Fix bug in the uclibc{,-snapshot} ldconfig and ldd binaries getting built only X-Git-Tag: Release-2010-05/1~17121 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec60fb50dbd054b49306851acc89d2423bf90346;p=openembedded.git Fix bug in the uclibc{,-snapshot} ldconfig and ldd binaries getting built only in the install phase. This was resulting in *buildsystem* paths hardcoded into the binary. BKrev: 4149f71f_fNYP9uwFikoc7ysNpSi6Q --- diff --git a/uclibc-snapshot/uclibc-snapshot_cvs.oe b/uclibc-snapshot/uclibc-snapshot_cvs.oe index e87b0a55d9..f7246d4ffa 100644 --- a/uclibc-snapshot/uclibc-snapshot_cvs.oe +++ b/uclibc-snapshot/uclibc-snapshot_cvs.oe @@ -81,6 +81,10 @@ do_configure() { oe_runmake oldconfig } +do_compile () { + oe_runmake all utils +} + do_stage() { # Install into the cross dir (this MUST be done first because we # will install crt1.o in the install_dev stage and gcc needs it) diff --git a/uclibc/uclibc_0.9.26.oe b/uclibc/uclibc_0.9.26.oe index e052dcdbc9..1de577e8ec 100644 --- a/uclibc/uclibc_0.9.26.oe +++ b/uclibc/uclibc_0.9.26.oe @@ -81,6 +81,10 @@ do_configure() { oe_runmake oldconfig } +do_compile () { + oe_runmake all utils +} + do_stage() { # Install into the cross dir (this MUST be done first because we # will install crt1.o in the install_dev stage and gcc needs it)