Subject: Re: make install failure in xsrc
To: Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
From: Frederick Bruckman <fb@enteract.com>
List: current-users
Date: 11/05/2000 09:57:57
On Sun, 5 Nov 2000, Izumi Tsutsui wrote:

> You have to "make all" before "make install" to build xsrc/contrib
> and xsrc/local. "make" does only enter into xsrc/xc.
> I don't know if this is correct behavior, though.
> 
> (I think just "make build" is recommended.)

It's a bug. It looks like the empty "all" target was being passed over
as the default target, even though it's first. I've commited a fix.

> ---
> % pwd
> /work/xsrc
> % make -n
> rm -f xc/xmakefile
> cd xc && make World
> % make -n all
> rm -f xc/xmakefile
> cd xc && make World
> if [ ! -f contrib/Makefile ]; then  cd contrib && PATH=../xc/config/imake:$PATH  sh ../xc/config/util/xmkmf -a ../xc ../contrib;  fi
> cd contrib && make
> if [ ! -f local/Makefile ]; then  cd local && PATH=../xc/config/imake:$PATH  sh ../xc/config/util/xmkmf -a ../xc ../local;  fi
> cd local && make
> % make -n install
> cd xc && make install && make install.man
> cd contrib && make install && make install.man
> cd local && make install && make install.man
> % make -n build
> make cleandir all install
> % 
> ---
> Izumi Tsutsui
> tsutsui@ceres.dti.ne.jp
> 



Frederick