=================================================================== RCS file: /cvs/openbsd/sxxu/Attic/install.sxxu,v retrieving revision 1.10 retrieving revision 1.13 diff -u -r1.10 -r1.13 --- openbsd/sxxu/Attic/install.sxxu 2010/04/21 20:13:08 1.10 +++ openbsd/sxxu/Attic/install.sxxu 2010/04/22 23:01:41 1.13 @@ -1,5 +1,5 @@ #!/bin/ksh - -# $Id: install.sxxu,v 1.10 2010/04/21 19:13:08 andrew Exp $ +# $Id: install.sxxu,v 1.13 2010/04/22 22:01:41 andrew Exp $ # Copyright (c) 2010 Andrew Fresh # @@ -96,6 +96,7 @@ echo ' ==> Applying patches' local _p for _p in patches/*; do + [ X"patches/*" == X"${_p}" ] && continue echo " => $_p" # -N Always assume a forward patch. # -t Never prompt; assume the user is expert @@ -155,6 +156,7 @@ exit fi -do_pre -process_roles -do_post +do_pre 2>&1 | /usr/bin/tee /var/log/install.log +process_roles 2>&1 | /usr/bin/tee -a /var/log/install.log | grep '^...>' +do_post 2>&1 | /usr/bin/tee -a /var/log/install.log | grep '^...>' +echo See /var/log/install.log for install messages.