From d342f07fee62d05c7b8d879a8b8e977290b39cef Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 04 Apr 2013 11:08:10 -0400 Subject: Generate /etc/ld.so.conf.d/*. --- diff --git a/build b/build index deefbe2..53fd58b 100755 --- a/build +++ b/build @@ -78,9 +78,15 @@ build: build-libc build-locales install-libc: build-libc # Install /etc/ld.so.conf early to silence a warning from ldconfig. - mkdir -p dest/etc - cp ../ld.so.conf dest/etc + mkdir -p dest/etc/ld.so.conf.d + printf 'include /etc/ld.so.conf.d/*.conf\n' \ + >'dest/etc/ld.so.conf' + printf '/usr/local/lib\n/opt/lib\n' \ + >'dest/etc/ld.so.conf.d/local' + printf '/lib/$(OPK_HOST_ARCH)\n/usr/lib/$(OPK_HOST_ARCH)\n' \ + >'dest/etc/ld.so.conf.d/$(OPK_HOST_ARCH)' oh-autoinstall -s "$${PWD}/src/libc" -B libcbuild + rm -f dest/etc/ld.so.cache rm -f dest/var/db/Makefile \ dest/sbin/sln \ dest/usr/bin/makedb \ @@ -95,7 +101,6 @@ install-libc: build-libc cp ../nsswitch.conf dest/etc cp src/libc/posix/gai.conf dest/etc cp src/libc/nscd/nscd.conf dest/etc - rm -f dest/etc/ld.so.cache install-locales: build-locales oh-autoinstall -s "$${PWD}/src/localedef" -B localesbuild \ diff --git a/ld.so.conf b/ld.so.conf deleted file mode 100644 index 04f3479..0000000 --- a/ld.so.conf +++ /dev/null @@ -1,4 +0,0 @@ -# /etc/ld.so.conf - -/usr/local/lib -/opt/lib diff --git a/libc.6.pkg/files b/libc.6.pkg/files index a4d2e14..c222a83 100644 --- a/libc.6.pkg/files +++ b/libc.6.pkg/files @@ -2,6 +2,7 @@ /usr/lib/*/gconv /etc/gai.conf /etc/ld.so.conf +/etc/ld.so.conf.d /etc/localtime /etc/nsswitch.conf /etc/rpc -- cgit v0.9.1