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

Bug/feature?: test -f empty string 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

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 me

Re: Bug/feature?: test -f empty string 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 test