diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 01:13:30 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 13:17:38 +0000 |
commit | 68f447c46596387f95072743926298fc64cdd3b9 (patch) | |
tree | 3529bb0ce12177b1d5a487052309dd582c3b569a /meta/recipes-core | |
parent | f235a69f8d5cee6f6d8e7feccd83e8e619e2ddcf (diff) | |
download | openembedded-core-68f447c46596387f95072743926298fc64cdd3b9.tar.gz openembedded-core-68f447c46596387f95072743926298fc64cdd3b9.tar.bz2 openembedded-core-68f447c46596387f95072743926298fc64cdd3b9.zip |
cross-localedef-native: Fix case where ${B} != ${S}
This change allows ${B} != ${S} builds to work since otherwise configure
isn't found.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/eglibc/cross-localedef-native_2.17.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/eglibc/cross-localedef-native_2.17.bb b/meta/recipes-core/eglibc/cross-localedef-native_2.17.bb index 0fedfad641..1d3c22bf57 100644 --- a/meta/recipes-core/eglibc/cross-localedef-native_2.17.bb +++ b/meta/recipes-core/eglibc/cross-localedef-native_2.17.bb @@ -39,11 +39,11 @@ EXTRA_OECONF = "--with-glibc=${WORKDIR}/eglibc-${PV}/libc" CFLAGS += "-DNOT_IN_libc=1" do_configure () { - ./configure ${EXTRA_OECONF} + ${S}/configure ${EXTRA_OECONF} } do_install() { install -d ${D}${bindir} - install -m 0755 ${S}/localedef ${D}${bindir}/cross-localedef + install -m 0755 ${B}/localedef ${D}${bindir}/cross-localedef } |