Re: Variable is assigned wrong value

2003-07-30 Thread Michael Sterrett -Mr. Bones.-
om comment on the end of the line". Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] ___ Bug-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-make

Re: gmake and embedded PL/SQL block

2003-07-23 Thread Michael Sterrett -Mr. Bones.-
have a problem." Kudos for posting the version of GNU make that you're running though. Most people forget to do that. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] On Wed, 23 Jul 2003, Pankratz, Theresa wrote: > I am trying to compile a Pro*C project using gmake. One of the pc fil

Re: GNU make 3.80rc2 released

2002-09-10 Thread Michael Sterrett -Mr. Bones.-
Is it just me or is "make check" completely hosed? I'm not at all confident in my environment here so this isn't rhetorical. Can someone please confirm a working "make check" please? Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] On Tue, 10 Sep 2002 [EMAIL P

Re: GNU make 3.80 rc1

2002-07-16 Thread Michael Sterrett -Mr. Bones.-
e the patches themselves) to 3.80? Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] diff -ur make-3.80rc1.orig/commands.c make-3.80rc1/commands.c --- make-3.80rc1.orig/commands.cTue Jul 9 00:54:08 2002 +++ make-3.80rc1/commands.c Mon Jul 15 15:34:30 2002 @@ -512,7 +

Re: GNU make 3.80 rc1

2002-07-16 Thread Michael Sterrett -Mr. Bones.-
len = 1 cp isn't NULL qp is NULL bp isn't NULL qp is null because we try to alloca(0) which returns NULL (despite what the comment at the top of the file says about alloca(0) re-claiming memory). I'm hoping rc2 is more fun. ;-) Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED

Re: GNU make 3.80 rc1

2002-07-15 Thread Michael Sterrett -Mr. Bones.-
those are the two that make GNU make not as fun to use here. I'll send out my two patches here in a bit. Ya changed the code just enough so my patches for previous version of make don't apply cleanly to this one so I have to redo them. ;-) Michael Sterrett -Mr. Bones.- [EMAIL PROTEC

Re: Oracle Pro-C pre-compiler error PCC-F-02104 & Pro Cobol errorPCC-S-0037

2002-04-15 Thread Michael Sterrett -Mr. Bones.-
eading its configuration from. Looking at /oracle/.db_user_passwd might be good too since it looks like that's where the userid is supposed to be coming from in your environment. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] On Mon, 15 Apr 2002, Thatcher Deane wrote: > We use gnumake

Re: unexpected rm

2002-02-16 Thread Michael Sterrett -Mr. Bones.-
e out the first time. ;-) Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] On Sat, 16 Feb 2002, andre maute wrote: > hello make team > > i use linux 2.4.16, gcc 2.95.2 > > make -v > GNU Make version 3.79.1, by Richard Stallman and Roland McGrath. > Built for i686-pc-linu

Re: non-restartable system calls

2001-05-16 Thread Michael Sterrett -Mr. Bones.-
en a problem for us in the past and we're currently running a patched version of gmake to get it to work properly with regard to non-restartable system calls. The EINTR checks are definitely painful. ;-) Thanks, Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] __

Fixed stat() patch

2001-03-13 Thread Michael Sterrett -Mr. Bones.-
. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] diff -u commands.c commands.c --- commands.c Tue Jun 13 10:24:43 2000 +++ commands.c Mon Mar 12 16:49:22 2001 @@ -493,7 +493,7 @@ } #endif - if (stat (file->name, &st) == 0 + if (atomic_stat (file->name, &st)

Re: missing separator

2001-03-12 Thread Michael Sterrett -Mr. Bones.-
Lines 345 and 346 start with spaces instead of tabs. Change that and it may work much better. That particular error message is not very helpful. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] ___ Bug-make mailing list [EMAIL PROTECTED] http

Re: Bug tracking system reincarnated...

2001-03-11 Thread Michael Sterrett -Mr. Bones.-
s when vpath is used > I'll check with the GNU folks to make sure the GNATS stuff is running OK. Should I try to submit them again? Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] ___ Bug-make mailing list [EMAIL PROTECTED] http://mail.g

Dynix/PTX patches

2001-03-09 Thread Michael Sterrett -Mr. Bones.-
Greetings, Just to stir up some conversation and maybe to help any other people running on Dynix/PTX on the list, I've attached four patched that I'm running with right now. Comments welcome, Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] diff -u commands.c g

Re: Bug tracking system reincarnated...

2001-03-09 Thread Michael Sterrett -Mr. Bones.-
eports that are reported show up immediately or do they filter thru a human moderator? I posted a couple a half hour ago and no mail, no show. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] ___ Bug-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-make

entertaining vpath behavior

2000-06-28 Thread Michael Sterrett -Mr. Bones.-
ut that seems like a kludge. Can I do what I want in a better way? Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED]

Re: -j fails on DYNIX/ptx

2000-05-31 Thread Michael Sterrett -Mr. Bones.-
produced if sufficiently adverse conditions were encountered, even on "normal" UNIX systems. I'm for adding the loop on EINTR to the GNU make code base. Thanks for your work on this, Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED]

Re: Make 3.79 install problem

2000-05-29 Thread Michael Sterrett -Mr. Bones.-
make command so as to be sure to install > make in the right place. I believe all GNU utilities default to /usr/local... by default. I think you might want to run ./configure --help and look at the different prefix options. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED]

Re: PATCH: -j fails on DYNIX/ptx

2000-05-19 Thread Michael Sterrett -Mr. Bones.-
really have a preference for one over the other, but I'd prefer not to have to patch gmake every time I want to upgrade so I wanted to make it easy to integrate. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED]

PATCH: -j fails on DYNIX/ptx

2000-05-19 Thread Michael Sterrett -Mr. Bones.-
IGCHLD blocking at a higher level. I hope something like this patch can make it into make-3.79.1. Thanks for your help, BTW. The suggestion of adding perror() really got me headed in the right direction. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED] --- make-3.78.1.orig/remake.c

-j fails on DYNIX/ptx

2000-05-18 Thread Michael Sterrett -Mr. Bones.-
thinks it's a problem with gmake, but I'm not convinced. Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED]

Re: gmake -j on DYNIX/ptx

2000-03-05 Thread Michael Sterrett -Mr. Bones.-
Thu Mar 2 13:08:26 2000 @@ -1189,7 +1174,12 @@ { struct stat st; +#ifdef _SEQUENT_ + if (stat (name, &st) < 0 + && (usleep(20), stat (name, &st)) < 0) +#else if (stat (name, &st) < 0) +#endif return (FILE_TIMESTAMP) -1; return FILE_TIMESTAMP_STAT_MODTIME (st); Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED]

gmake -j on DYNIX/ptx

2000-03-05 Thread Michael Sterrett -Mr. Bones.-
know this is a long shot since there's probably not many PTX users on this list, but is anyone else working in this kind of environment who would be willing to compare notes? Thanks, Michael Sterrett -Mr. Bones.- [EMAIL PROTECTED]