RE: switch statement bug on Sol 5.7

2000-08-30 Thread Brown, Nelson
Hmmm. Curious. My system is totaly stock. The commands I used to build make were: > ./configure --prefix=/export/home/brownn -program-prefix=g > make > make install Changing the prefix and program-prefix didn't affect anything. It could be an issue with my gcc build, which I rebuilt (also defa

Re: Bug/feature?: test -f gives an error

2000-08-30 Thread Paul D. Smith
%% "Jay Vaishnav" <[EMAIL PROTECTED]> writes: jv> I am enclosing the rule for making a target from a GNU make jv> file that I have written. jv> SHELL = /bin/sh jv> # Check if the present working directory contains any Java sources. jv> local: jv> listjava='$(wildcard *.java)';if

RE: switch statement bug on Sol 5.7

2000-08-30 Thread Paul D. Smith
%% "Brown, Nelson" <[EMAIL PROTECTED]> writes: bn> Per Paul Smith's suggestion, I tried v3.79.1. The result was the bn> same, with the offending code now located at main.c:1967. All bn> other parameters are same as below. I'm not sure what to do from here. GNU make 3.79.1 works fine for

RE: switch statement bug on Sol 5.7

2000-08-30 Thread Brown, Nelson
Per Paul Smith's suggestion, I tried v3.79.1. The result was the same, with the offending code now located at main.c:1967. All other parameters are same as below. -Original Message- From: Nelson Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 30, 2000 11:54 AM To: [EMAIL PROTECT

Bug/feature?: test -f gives an error

2000-08-30 Thread Jay Vaishnav
Hi, I am enclosing the rule for making a target from a GNU make file that I have written. SHELL = /bin/sh # Check if the present working directory contains any Java sources. local: listjava='$(wildcard *.java)';if test -f $(firstword $$listjava); \ then javac $$listjava; fi I

Re: switch statement bug on Sol 5.7

2000-08-30 Thread Paul D. Smith
Please try the latest version, 3.79.1. Find it in: ftp://ftp.gnu.org/gnu/make/ Let me know if you still see problems. -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.or

switch statement bug on Sol 5.7

2000-08-30 Thread Nelson Brown
The build of 3.79 goes smoothly (using Sun's native make), however, I run gmake I get: Bus Error (core dumped) regardless of what command-line arguments I use. using the following trivial Makefile: all: echo "making all ... " my gdb session looks as follows: > gdb ~/bin/gmake GNU gdb 4