Subject: Re: -current build failure
To: None <Marius.Roman@gmail.com>
From: Havard Eidnes <he@uninett.no>
List: current-users
Date: 10/06/2006 15:52:26
> My mistake, I get this errors when building the tools :
> #   compile  compat/md4c.lo
> cc -O  -I. -I./include -I/usr/src/tools/compat -DHAVE_NBTOOL_CONFIG_H=
=3D1
> -D_FILE_OFFSET_BITS=3D64 -D__DBINTERFACE_PRIVATE -c -o md4c.lo.o
> /usr/src/tools/compat/../../common/lib/libc/md/md4c.c
> In file included from
> /usr/src/tools/compat/../../common/lib/libc/md/md4c.c:42:
> /usr/src/tools/compat/md4.h:5:31: error: ../../sys/sys/md4.h: No such=
 file
> or directory

This looks like you have done a "cvs update" without using the
"-d" option, as in either "cvs update -d" or as in having a line
saying "update -d" in ~/.cvsrc.

I have in my ~/.cvsrc a line which says "update -d -P":

"-d" makes sure you get new directories created, and if it's a
while since you updated the last time, the top-level common/
directory has probably been introduced after you updated the last
time.

"-P" makes sure cvs prunes out empty and no-longer-needed
directories at the end of the update run.

Regards,

- H=E5vard