#!/bin/sh -x

# RCS was much better before the GNU people got a hold of it.

for f
do
	echo ===================================================== $f
	rcs -u4.9 $f
	co -l4 $f
	ci -u -m"baseline for 4.9" -r4.9.1 -f -sRel -Nrelease $f
	rcs -u4.9 -b4.9.1 $f
	co $f
done

exit
