Re: strange problem with 'echo' target

2000-12-15 Thread Paul D. Smith
%% Regarding strange problem with 'echo' target; you wrote: ss> I'm experiencing a strange problem with make, which I can't ss> narrow down. What happens is that I have an 'echo' executable ss> in the local directory, which gets executed whenever I call ss> 'make echo'. Please always rem

strange problem with 'echo' target

2000-12-15 Thread Stefan Seefeld
hi, I'm experiencing a strange problem with make, which I can't narrow down. What happens is that I have an 'echo' executable in the local directory, which gets executed whenever I call 'make echo'. The make debugging output looks so: ... Finished prerequisites of target file `echo.o'. Prerequis

Re: configure bug in make-3.79.1

2000-12-15 Thread Paul D. Smith
%% [EMAIL PROTECTED] (Jimi X) writes: >> "PDS" == Paul D Smith <[EMAIL PROTECTED]> writes: PDS> Thanks; this has been fixed in the sources for a while. jx> Sorry 'bout that.. is that on sourceware? No. GNU tools are available via CVS on the FSF's subversions server. Start here: h

Re: configure bug in make-3.79.1

2000-12-15 Thread Jimi X
> "PDS" == Paul D Smith <[EMAIL PROTECTED]> writes: PDS> Thanks; this has been fixed in the sources for a while. Sorry 'bout that.. is that on sourceware? PDS> There are certain tests that configure must run which won't work PDS> in a cross-compiled environment, because they require actua

Re: configure bug in make-3.79.1

2000-12-15 Thread Paul D. Smith
%% [EMAIL PROTECTED] (Jimi X) writes: jx> make-3.79.1/configure[3172]: (cross-compiling): unknown test operator jx> corresponding line # 99 in configure.in jx> if test $ac_cv_func_gettimeofday = yes; then jx> $ac_cv_func_gettimeofday and be empty making the test fail. jx> need to wra

configure bug in make-3.79.1

2000-12-15 Thread Jimi X
make-3.79.1/configure[3172]: (cross-compiling): unknown test operator corresponding line # 99 in configure.in if test $ac_cv_func_gettimeofday = yes; then $ac_cv_func_gettimeofday and be empty making the test fail. need to wrap the variable in quotes -Jimi X BTW: since when can you not build

call function

2000-12-15 Thread Stephane LEGOUGE
Hello, i found this difference between 3.78.1 and 3.79.1 using call function with shell commands : :: makefile :: A = echo $1 toto: ; @ f=toto && $(call A,$$f) .PHONY: toto With GNU Make version 3.78.1 > make toto > With GNU Make version 3.79.1