Re: bug in make-3.79.1

2002-09-23 Thread Paul D. Smith
Hi; this bug has been reported before and is fixed in the CVS version of GNU make; the fix will be in the next release. Thanks for the report! -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips a

bug in make-3.79.1

2002-09-23 Thread Steven Dirkse
Hello, I believe there is a bug in 3.79.1. It occurs late in function try_variable_definition, where the code v->append = append; is executed. For a build with WINDOWS32 defined the struct v was not initialized in some cases (specifically, when processing a line of the form SHELL = /bin/bas

Re: GNU make v3.79.1 bug with echo-suppressed commands in defined variables

2002-09-23 Thread Paul D. Smith
This bug has been reported before and fixed in the source for a while now. The fix will be in the next version of GNU make. You can apply the patch below to 3.79.1 to fix it there if you like. --- make-3.79.1/job.c Fri Jun 23 11:54:56 2000 +++ make/job.c Wed May 2 01:17:08 2001 @@ -895,8

GNU make v3.79.1 bug with echo-suppressed commands in defined variables

2002-09-23 Thread Justin Nicolaides
I’ve run into a problem using ‘@’ to suppress echoing for commands in a “define” variable. I am using make version 3.79.1 from the Cygwin package on Windows XP SP1. The problem is that once make has executed a line with an @, echoing is suppressed for all subsequent commands, regardless of

bug

2002-09-23 Thread Gergely Czuczy
hi! i've got a project and when I run make it simply stops with an error: [phoemix@kign ~/t/mulmin]$ make Making all in src make[1]: Entering directory `/home/phoemix/t/mulmin-20020923/src' Making all in mulmin-serv make[2]: Entering directory `/home/phoemix/t/mulmin-20020923/src/m

RE: make check for make-3.80rc2 on HP-UX (1 fail), AIX (ok) and Solaris (ok)

2002-09-23 Thread Jerome Zago
Title: RE: make check for make-3.80rc2 on HP-UX (1 fail), AIX (ok) and Solaris (ok) After installing gettext-0.11.5, I can no longer reproduce the FAILED for the fourth test. Instead it works fine with gcc 3.1 and it crashes with gcc 3.0.4. I don't bother that much about gcc 3.0.4 therefore

Re: Phony Targets (documentation - small typo)

2002-09-23 Thread Paul D. Smith
This typo in the manual has been fixed in CVS for a while and will be in the next release. Thanks for the report. -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org

Phony Targets (documentation - small typo)

2002-09-23 Thread Edward Duffy
An example for .PHONY targets (section 33), reads: 1: SUBDIRS = foo bar baz 2: .PHONY: subdirs $(SUBDIRS) 3: subdirs: $(SUBDIRS) 4: $(SUBDIRS): 5: $(MAKE) -C $ 6: foo: baz URL: http://www.gnu.org/manual/make-3.79.1/html_mono/make.html#SEC33 This spit out the error: make -C mak