This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: AM_MAKE_INCLUDE
- To: corsepiu at faw dot uni-ulm dot de
- Subject: Re: AM_MAKE_INCLUDE
- From: Tim Van Holder <tim dot van dot holder at pandora dot be>
- Date: 27 Mar 2001 16:12:04 +0200
- Cc: Automake List <automake at gnu dot org>
- List-Id: Discussion list for automake <automake.gnu.org>
- References: <3AC047D4.3F08A6DC@faw.uni-ulm.de>
On 27 Mar 2001 09:57:08 +0200, Ralf Corsepius wrote:
> # ./configure
> checking for style of include used by make... include
>
> # make
> /bin/sh ./config.status --recheck
> running /bin/sh ./configure --no-create --no-recursion
> checking for style of include used by make... #
Is there any chance that GNU make is called gmake on your system?
In that case, plain configure would probably (not entirely sure) use
gmake
to deduce the include type.
Because the second run is from 'make', not 'gmake', $MAKE is set and
the configure call will end up using that make to deduce the include
style.
Try "MAKE=make ./configure" and see if that finds include or #.