diff options
author | Ross Burton <ross.burton@intel.com> | 2018-01-29 17:11:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-30 11:50:11 +0000 |
commit | 563a020870ee0e8212609639c74f19a0f4fc0847 (patch) | |
tree | bc39b9e94dd82161a84d8549b1ffc7ba8443f905 /meta/recipes-core/glibc | |
parent | 34c6b6d2044b4611a6dcc855c99aeadaf1c0394d (diff) | |
download | poky-563a020870ee0e8212609639c74f19a0f4fc0847.tar.gz |
meta: don't use deprecated functions from utils.bbclass
These functions were moved to meta/lib/oe in 2010 and the base_* functions in
utils.bbclass were intended to be a short-term compatibility layer. They're
still used in a few places, so update the callers to use the new functions.
(From OE-Core rev: c97acbd034532895ce57c6717ed1b3ccc7900b0d)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc')
-rw-r--r-- | meta/recipes-core/glibc/glibc-package.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc index 4d3dc679b4..824b185b3a 100644 --- a/meta/recipes-core/glibc/glibc-package.inc +++ b/meta/recipes-core/glibc/glibc-package.inc | |||
@@ -118,10 +118,10 @@ do_install_append_aarch64 () { | |||
118 | # The aarch64 ABI says the dynamic linker -must- be /lib/ld-linux-aarch64[_be].so.1 | 118 | # The aarch64 ABI says the dynamic linker -must- be /lib/ld-linux-aarch64[_be].so.1 |
119 | install -d ${D}${nonarch_base_libdir} | 119 | install -d ${D}${nonarch_base_libdir} |
120 | if [ -e ${D}${base_libdir}/ld-linux-aarch64.so.1 ]; then | 120 | if [ -e ${D}${base_libdir}/ld-linux-aarch64.so.1 ]; then |
121 | ln -s ${@base_path_relative('${nonarch_base_libdir}', '${base_libdir}')}/ld-linux-aarch64.so.1 \ | 121 | ln -s ${@oe.path.relative('${nonarch_base_libdir}', '${base_libdir}')}/ld-linux-aarch64.so.1 \ |
122 | ${D}${nonarch_base_libdir}/ld-linux-aarch64.so.1 | 122 | ${D}${nonarch_base_libdir}/ld-linux-aarch64.so.1 |
123 | elif [ -e ${D}${base_libdir}/ld-linux-aarch64_be.so.1 ]; then | 123 | elif [ -e ${D}${base_libdir}/ld-linux-aarch64_be.so.1 ]; then |
124 | ln -s ${@base_path_relative('${nonarch_base_libdir}', '${base_libdir}')}/ld-linux-aarch64_be.so.1 \ | 124 | ln -s ${@oe.path.relative('${nonarch_base_libdir}', '${base_libdir}')}/ld-linux-aarch64_be.so.1 \ |
125 | ${D}${nonarch_base_libdir}/ld-linux-aarch64_be.so.1 | 125 | ${D}${nonarch_base_libdir}/ld-linux-aarch64_be.so.1 |
126 | fi | 126 | fi |
127 | fi | 127 | fi |