Subject: Re: Build failure on 8/3rd
To: Hirohito Higuchi <hirohito@msi.biglobe.ne.jp>
From: Patrick Welche <prlw1@newn.cam.ac.uk>
List: current-users
Date: 08/04/2000 18:14:35
On Fri, Aug 04, 2000 at 06:04:10PM +0900, Hirohito Higuchi wrote:
> Greeting
> Hi, I tried to build current(1.5C) on 8/3rd.
> 
> I used snapshot-20000620 which I got before.
> And I did as bellow, But I failed to build.
> 
> 1: cd /usr/src/share/mk & make install
> 2: mkdir /usr/obj 
> 3: cd /usr/src & make obj & make build
> 
> Following is Log. So, what's wrong?

Nothing ?


> includes ===> lib/libcom_err
...
> /usr/src/lib/libcom_err/compile_et/../../../crypto/dist/heimdal/lib/roken/print_version.c:40: print_version.h: No such file or directory

I just had the same problem because my obj directories where out of sync.

Try
cd /usr/src/lib/libcom_err/compile_et
make cleandir
rm obj
make cleandir
cd ..
make cleandir
rm obj
make cleandir
make obj
cd compile_et
make obj
cd ..
make depend && make

There are probably a lot of redundant bits in the above, but that's roughly
what did the trick for me..

Cheers,

Patrick