Subject: Re: Snapshot report - 29th July/5th August tar_files
To: Alistair G. Crooks <agc@uts.amdahl.com>
From: Paul Kranenburg <pk@cs.few.eur.nl>
List: current-users
Date: 08/12/1995 11:52:29
> (cd /usr/src/gnu/usr.bin/ld ; make && make install && make cleandir)
> cp -p /usr/libexec/ld.so.good /usr/libexec/ld.so

Please note that it is not really a good idea to copy over a shared
library that is possibly in use. I usually do the following:
	mv /usr/libexec/ld.so /usr/libexec/ld.so-
	mv /usr/libexec/ld.so.good /usr/libexec/ld.so
	rm /usr/libexec/ld.so-

even though it leaves a minute time frame with no ld.so present.

-pk