Annotation of openbsd/fill_chroot/fix_ldconfig, Revision 1.4
1.1 andrew 1: #!/bin/sh
1.4 ! andrew 2: # $RedRiver: fix_ldconfig,v 1.3 2005/12/21 19:14:12 andrew Exp $
1.1 andrew 3:
1.3 andrew 4: CHROOT=${CHROOT:=/var/www}
1.1 andrew 5:
6: if [ ${CHROOT}"X" == "X" ]; then
7: echo No CHROOT Specified!
8: exit 255
9: fi
10:
11: mkdir -p ${CHROOT}/bin
12: mkdir -p ${CHROOT}/var/run
13:
14: cp /sbin/ldconfig ${CHROOT}/bin
1.4 ! andrew 15: chroot ${CHROOT} /bin/ldconfig /usr/lib /usr/X11R6/lib /usr/local/lib
! 16: #chroot ${CHROOT} /bin/ldconfig -r
1.1 andrew 17: rm -f ${CHROOT}/bin/ldconfig
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>