=================================================================== RCS file: /cvs/openbsd/fill_chroot/fill_chroot,v retrieving revision 1.11 retrieving revision 1.13 diff -u -r1.11 -r1.13 --- openbsd/fill_chroot/fill_chroot 2008/09/16 23:28:04 1.11 +++ openbsd/fill_chroot/fill_chroot 2008/09/17 21:08:17 1.13 @@ -1,5 +1,5 @@ #!/bin/sh -# $RedRiver: fill_chroot,v 1.10 2008/09/16 22:13:21 andrew Exp $ +# $RedRiver: fill_chroot,v 1.12 2008/09/16 22:38:35 andrew Exp $ CHROOT=${CHROOT:=/home/andrew/www} export CHROOT @@ -15,20 +15,16 @@ install -d -m 0555 -o root -g wheel $d done -echo Installing ld.so -echo pax -r -w -L -p e /usr/libexec/ld.so ${CHROOT} -pax -r -w -L -p e /usr/libexec/ld.so ${CHROOT} - echo Making devices cd ${CHROOT}/dev /dev/MAKEDEV std cd ${OLDPWD} -echo Installing perl +echo Installing perl into ${CHROOT} perl_to_chroot if [ -e /usr/local/sbin/femail ]; then - echo Installing femail + echo Installing femail into ${CHROOT} echo pax -r -w -L -p e /usr/local/sbin/femail ${CHROOT} pax -r -w -L -p e /usr/local/sbin/femail ${CHROOT} else @@ -44,7 +40,7 @@ fi if [ -e /usr/local/bin/aspell ]; then - echo Installing aspell + echo Installing aspell into ${CHROOT} for d in \ /usr/local/bin/aspell \ /usr/local/lib/aspell \ @@ -57,7 +53,7 @@ _find="${_find} -o ( -name aspell -a -type f )" fi -echo Installing dependencies +echo Installing dependencies into ${CHROOT} for d in `find ${CHROOT}/usr ${_find} | \ xargs find_depends | \ sort -u `; do