diff options
author | Tom Rini <trini@konsulko.com> | 2018-04-20 13:55:23 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-11 07:49:31 +0100 |
commit | 1f03019356e3712435dbe4ed9f359992b0ad4578 (patch) | |
tree | 262f5ac4a91d6335a0cdc0646ec8af4eccc37660 | |
parent | 8d009dd8c3c56601905a156cb06f339dd4a298e6 (diff) | |
download | openembedded-core-contrib-1f03019356e3712435dbe4ed9f359992b0ad4578.tar.gz |
glibc: Check /etc/ld.so.conf.d/*.conf by default
The expected modern behavior for dealing with adding ld.so.conf entries
is to add a file to /etc/ld.so.conf.d/. In order to do this, ld.so.conf
needs to explicitly include that /etc/ld.so.conf.d/*.conf. Make it so.
Cc: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-core/glibc/glibc/etc/ld.so.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/glibc/glibc/etc/ld.so.conf b/meta/recipes-core/glibc/glibc/etc/ld.so.conf index e69de29bb2d..83327c01bf5 100644 --- a/meta/recipes-core/glibc/glibc/etc/ld.so.conf +++ b/meta/recipes-core/glibc/glibc/etc/ld.so.conf @@ -0,0 +1 @@ +include /etc/ld.so.conf.d/*.conf |