[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-03 Thread Paul D. Smith
Update of bug #40159 (project make): Status:None => Duplicate Open/Closed:Open => Closed ___ Follow-up Comment #12: Thanks for testing.

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-03 Thread padavo
Follow-up Comment #11, bug #40159 (project make): My apologies for the stupid broken markup ... I gambled and lost :) This is a repost of comment #10. Summary: The procedure at comment #9 fixes the bug ! I will submit a Debian bugreport. Procedure #1: Without the patch, the bug occur

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-03 Thread padavo
Follow-up Comment #10, bug #40159 (project make): ### Summary: ** The procedure at comment #9 fixes the bug ! ** ### Procedure #1: Without the patch, the bug occurs apt-get build-dep make apt-get source make cd make-dfsg-3.81/ dpkg-buildpackage -nc -us -uc ./make -R -r -f /home/david/work/src/

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread Martin Dorey
Follow-up Comment #9, bug #40159 (project make): I repeated all my tests with both makefiles. In all tests, they behaved like the original. So this is a bug that's been fixed here since 3.82. Debian has taken many patches from here but hasn't taken whichever one fixed this. Can we say which it

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread padavo
Follow-up Comment #8, bug #40159 (project make): At the bug page https://savannah.gnu.org/bugs/index.php?40159 I attached the two example Makefiles https://savannah.gnu.org/bugs/download.php?file_id=29289 https://savannah.gnu.org/bugs/download.php?file_id=29290 _

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread padavo
Additional Item Attachment, bug #40159 (project make): File name: Makefile Size:0 KB ___ Reply to this item at: ___ Message sent

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread padavo
Additional Item Attachment, bug #40159 (project make): File name: Makefile Size:0 KB ___ Reply to this item at: ___ Message sent

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread Martin Dorey
Follow-up Comment #6, bug #40159 (project make): Debian's make 3.81-8.2, from Wheezy and Sid, behaves like Squeeze, as does make-3.82 built on Debian via Paul's instructions here. ___ Reply to this item at:

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread Martin Dorey
Follow-up Comment #5, bug #40159 (project make): On a version (3.99.92) from Git the other day, the example's output ends with: Makefile:12: i Makefile:12: i make: Nothing to be done for 'dummy'. It exits with status zero. valgrind doesn't notice anything scary. With the make ("3.81-8")

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread Paul D. Smith
Follow-up Comment #4, bug #40159 (project make): I'm not able to reproduce this bug with any of 3.81, 3.82, or the current release candidate for the next stable release. So, either the problem is fragile enough that it's not reproducible on my system, or else the Debian version of this package ha

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread padavo
Follow-up Comment #3, bug #40159 (project make): Hi Paul. Thanks for responding! I do not have access to 3.82 at this time. 3.81 is the current version in Debian stable. I will be interested to hear if anyone tests my example makefile, on 3.81 or later. Do you see anything like what I reported

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread padavo
Follow-up Comment #2, bug #40159 (project make): In case of any confusion, please make a small typo correction in my bug report. There is a 'y' that should be a 'i'. The correct text is this: More evidence that bad things are happening internally can be seen by trivially changing the variable na

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread Paul D. Smith
Follow-up Comment #1, bug #40159 (project make): GNU make 3.81 is over 7 years old. Have you been able to reproduce this with the current stable version of GNU make, which is available at http://ftp.gnu.org/gnu/make/make-3.82.tar.gz? Also you might try the current prerelease for the next stable

[bug #40159] Premature exit with incorrect error message, or garbage output characters.

2013-10-02 Thread padavo
URL: <http://savannah.gnu.org/bugs/?40159> Summary: Premature exit with incorrect error message, or garbage output characters. Project: make Submitted by: padavo Submitted on: Wed 02 Oct 2013 05:39:01 PM GMT Sever

Re: incorrect error message

2004-09-17 Thread Boris Kolpackov
Paul D. Smith <[EMAIL PROTECTED]> writes: > This sounds familiar to me: pls. send it. Thx. Patch and test makefile are attached. -boris diff -u -b -B --minimal make-cvs-orig/file.c make-cvs-patched/file.c --- make-cvs-orig/file.c2004-05-16 19:19:57.0 -0500 +++ make-cvs-patched/

Re: incorrect error message

2004-09-17 Thread Paul D. Smith
%% Boris Kolpackov <[EMAIL PROTECTED]> writes: bk> This is wrong since the second pattern rule, if tried, would bk> succeed. The bug is in implicit.c line 399. I have a patch which bk> will appear in make-bk6 patch-set. I can also submit a patch bk> against make-cvs if there is any intere

Re: incorrect error message

2004-09-16 Thread Boris Kolpackov
Boris Kolpackov <[EMAIL PROTECTED]> writes: > Also assume that there is a file `baz' in current directory. That should be `bar', of course. ___ Bug-make mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/bug-make

Re: incorrect error message

2004-09-16 Thread Boris Kolpackov
Bruno Haible <[EMAIL PROTECTED]> writes: > To reproduce: In an otherwise empty directory, create this Makefile: > > > %.erg : ../bar > echo done > > %.erw : ../baz > echo done > > foo.res : ../baz > echo done > =

incorrect error message

2004-09-16 Thread Bruno Haible
An incorrect and highly onfusing error message of GNU make 3.80, on Linux x86. To reproduce: In an otherwise empty directory, create this Makefile: %.erg : ../bar echo done %.erw : ../baz echo done foo.res : ../baz echo done =