diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-13 13:31:55 +0000 |
---|---|---|
committer | Ross Burton <ross.burton@intel.com> | 2012-12-07 12:27:46 +0000 |
commit | 20e897ca36734cbd77e53e34d9993c941fde1081 (patch) | |
tree | 53ee6dbdd0a11bbc072e5d8df7f310b264e81dbb /meta | |
parent | 400ebfde27a2de4014d4711ac80a87116ad17e55 (diff) | |
download | openembedded-core-20e897ca36734cbd77e53e34d9993c941fde1081.tar.gz openembedded-core-20e897ca36734cbd77e53e34d9993c941fde1081.tar.bz2 openembedded-core-20e897ca36734cbd77e53e34d9993c941fde1081.zip |
libc-common: Ensure sysconfdir exists before installing files to it
Depending on the eglibc configuaration, the directory may or may not exist.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/libc-common.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/libc-common.bbclass b/meta/classes/libc-common.bbclass index 0f499366db..67b018b753 100644 --- a/meta/classes/libc-common.bbclass +++ b/meta/classes/libc-common.bbclass @@ -4,6 +4,7 @@ do_install() { h=`echo $r|sed -e's,\.x$,.h,'` install -m 0644 ${S}/sunrpc/rpcsvc/$h ${D}/${includedir}/rpcsvc/ done + install -d ${D}/${sysconfdir}/ install -m 0644 ${WORKDIR}/etc/ld.so.conf ${D}/${sysconfdir}/ install -d ${D}${localedir} make -f ${WORKDIR}/generate-supported.mk IN="${S}/localedata/SUPPORTED" OUT="${WORKDIR}/SUPPORTED" |