--- src/sys/conf/newvers.sh 2005/04/05 21:41:19 1.11 +++ src/sys/conf/newvers.sh 2005/04/08 06:38:44 1.11.2.1 @@ -87,7 +87,9 @@ if [ "${REVISION}" != "${BRANCH}" ]; the REVISION=$(echo $REVISION | sed -e 's/_/./g') for chkdir in machine/../../.. .. ../.. ../../.. /usr/src; do if [ -f ${chkdir}/sys/conf/subvers-${SHORTTAG} ]; then - SUBVER=$(tail -1 ${chkdir}/sys/conf/subvers-${SHORTTAG} | awk '{ print $1; }') + # quick hack for this release, tail isn't in the bootstrap + # tools set. + SUBVER=$(/usr/bin/tail -1 ${chkdir}/sys/conf/subvers-${SHORTTAG} | awk '{ print $1; }') if [ "X${SUBVER}" != "X" ]; then REVISION="${REVISION}.${SUBVER}" break