Subject: Re: make release errors in -current
To: Bob Nestor <rnestor@murphy.dyndns.org>
From: Bill Sommerfeld <sommerfeld@orchard.arlington.ma.us>
List: current-users
Date: 05/28/2000 10:35:39
lib/libc/dlfcn is a relatively new directory (it showed up around april 2nd).

For various reasons, "cvs update" does not check out newly created
directories by default; to pick up the new directories, you should do:

% cvs update -dP

the "-d" causes it to visit all directories in the CVS repository, not
just the directories you have checked out.

the "-P" causes cvs to make a pass over your sandbox after the update,
deleting empty directories (since you can't actually delete
directories from the repository).

					- Bill