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/*. --- (limited to 'build') 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 \ -- cgit v0.9.1