RE: Make 3.79.1 bug/question

2001-07-16 Thread Paul D. Smith
%% Regarding RE: Make 3.79.1 bug/question; you wrote: >> It's already fixed in the source code in CVS. There has been >> no release zg> Does it mean that next version of make will has the fix? Yes, it will. >> What I'm guessing you want is this: &g

RE: Make 3.79.1 bug/question

2001-07-15 Thread Zagorodnev, Grigory
Title: RE: Make 3.79.1 bug/question Thanks again for the response! Just two questions to clarify... > It's already fixed in the source code in CVS.  There has been > no release Does it mean that next version of make will has the fix? > Your makefile is wrong anyway,

RE: Make 3.79.1 bug/question

2001-07-12 Thread Zagorodnev, Grigory
Title: RE: Make 3.79.1 bug/question THANK YOU VERY MUCH for the fast response! Grigory. -Original Message- From: Paul D. Smith [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 5:58 PM To: Zagorodnev, Grigory Cc: '[EMAIL PROTECTED]' Subject: Re: Make 3.79.1 bu

Re: Make 3.79.1 bug/question

2001-07-12 Thread Paul D. Smith
%% "Zagorodnev, Grigory" <[EMAIL PROTECTED]> writes: zg> export A:= commom zg> target: A+= specific zg> target: zg> @echo $(A) zg> ...I got following error: zg> make: expand.c:489: allocated_variable_append: Assertion zg> `current_variable_set_list->next != 0' failed. zg> Abo

Make 3.79.1 bug/question

2001-07-12 Thread Zagorodnev, Grigory
Title: Make 3.79.1 bug/question Hi! I'm using GNU Make version 3.79.1 (i386-redhat-linux) and with a simple Makefile... export A:= commom target: A+= specific target:     @echo $(A) ...I got following error: make: expand.