[comp.os.minix] Bugg in run script in /usr/minix/lib

bengtb@erix.UUCP (08/27/87)

After having rebuilt my libc.a several times without getting all the modules
inserted, especially not puts.s I found the BUG. It's in the run script!

The script checks for non-present modules with this command:

	if grep -s $f ...

but should really be:

	if grep -s "^$f"

else the existens of fputs.s will make the script ignore the puts.s module!
No big bug, but it sure irritated me...

			Bengt Baverman
			bengtb@erix.se