Re: make 3.80 bug - running a program inside make

2005-07-21 Thread turbo
>Careful on the version numbers here. >bash-3.0-7 works, but has prompt display bugs because it inks against libreadline6-5.0-2. >bash-3.0-8 works, is the current version, and includes a static readline library. >bash-3.0-9 does not exist yet, but will soon be present to link against >the expe

Re: make 3.80 bug - running a program inside make

2005-07-21 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Dave Korn on 7/21/2005 5:24 AM: > Judging by the cygcheck attachment, he doesn't have MAKE_MODE set. He > does, however, have bash/coreutils 3.0-7 installed, which could indicate a > rollback from the buggy 3.0-8 versions, and could per

RE: make 3.80 bug - running a program inside make

2005-07-21 Thread Dave Korn
Original Message >From: Christopher Faylor >Sent: 21 July 2005 04:46 > On Wed, Jul 20, 2005 at 08:39:22PM -0700, turbo wrote: >> I have some makefiles that fail to work correctly. >> They worked about 6 months ago with cygwin. >> ${BIN}calls calls.in > calls.out >> I added the pwd l

Re: make 3.80 bug - running a program inside make

2005-07-20 Thread Christopher Faylor
On Wed, Jul 20, 2005 at 08:39:22PM -0700, turbo wrote: >I have some makefiles that fail to work correctly. >They worked about 6 months ago with cygwin. >They work fine on mandrake 10.2. > >Here is the first makefile problem: >In this makefile I run a program, i.e. > >test_calls: ${BIN}calls >

make 3.80 bug - running a program inside make

2005-07-20 Thread turbo
I have some makefiles that fail to work correctly. They worked about 6 months ago with cygwin. They work fine on mandrake 10.2. Here is the first makefile problem: In this makefile I run a program, i.e. test_calls: ${BIN}calls rm -f calls.out pwd ${BIN}calls calls.in > ca