RE: cp.exe bug

2004-03-16 Thread Ross Boulet
> -Original Message- > From: cygwin-owner On Behalf Of Dave Korn > Sent: Tuesday, March 16, 2004 12:17 PM > > > From: cygwin-owner On Behalf Of LarrysPCRemedies at aol.com > > Sent: 16 March 2004 17:36 > [ snip. ] > > #4) Just revert your coreutils. Didn't someone say it

RE: cp.exe bug

2004-03-16 Thread Dave Korn
> -Original Message- > From: cygwin-owner On Behalf Of [EMAIL PROTECTED] > Sent: 16 March 2004 17:36 > I get the same error with mv.exe > > I have a Makefile with the following statement [snip] > all: mpget2decodes >mv -f mpeg2decode ../mpeg2decode > [/snip] > > Running make I g

Re: cp.exe bug

2004-03-16 Thread LarrysPCRemedies
I get the same error with mv.exe I have a Makefile with the following statement [snip] all: mpget2decodes mv -f mpeg2decode ../mpeg2decode [/snip] Running make I get the following output (non-pertenant info deleted) [snip] $ make ... mv -f mpeg2decode ../mpeg2decode mv: `mpeg2decode' and `

Re: cp.exe bug

2004-03-15 Thread Mark Blackburn
Mark Blackburn wrote: Ross Boulet wrote: [...] Above is the makefile which produced the error. The cause seems to be cp's handling of a .exe file. A simple way to get what I now see as a misleading error message from cp is: $ touch foo.exe $ cp foo bar# note the absence of the .exe exte

Re: cp.exe bug

2004-03-15 Thread Mark Blackburn
Ross Boulet wrote: [...] Above is the makefile which produced the error. The cause seems to be cp's handling of a .exe file. A simple way to get what I now see as a misleading error message from cp is: $ touch foo.exe $ cp foo bar# note the absence of the .exe extension cp: `foo' and `bar'

RE: cp.exe bug

2004-03-15 Thread Ross Boulet
> -Original Message- > From: cygwin-owner On Behalf Of Dave Korn > Sent: Monday, March 15, 2004 4:50 AM > > > I cut more from my makefile and just use one symbolic in > > place of your BIN, OBJ, and FILE as follows: > > > > ### Even More Simple Makefile Example > > > > CC= gcc > >

RE: cp.exe bug

2004-03-15 Thread Dave Korn
> -Original Message- > From: cygwin-owner On Behalf Of Ross Boulet > Sent: 14 March 2004 21:45 > I cut more from my makefile and just use one symbolic in > place of your BIN, OBJ, and FILE as follows: > > ### Even More Simple Makefile Example > > CC= gcc > > FILE= foo > > all: $(

Re: cp.exe bug

2004-03-14 Thread Alan
- Original Message - From: "Ross Boulet" <[EMAIL PROTECTED]> To: "Cygwin" <[EMAIL PROTECTED]> Cc: "'Alan'" <[EMAIL PROTECTED]> Sent: Sunday, March 14, 2004 1:44 PM Subject: RE: cp.exe bug > > > > Problem: > >

RE: cp.exe bug

2004-03-14 Thread Ross Boulet
> > > Problem: > > > fileutils version 4.1-2, specifically: cp.exe does not > work properly. > > > [ ... Snip ... ] > > I've narrowed it down to running `make' on my linux Makefiles, simple > example follows: > > ### Simple Makefile Example > > CC= gcc > > OBJ= foo.o > FILE= foo.c > BIN=

Re: cp.exe bug

2004-03-14 Thread Alan
- Original Message - From: "Ross Boulet" <[EMAIL PROTECTED]> To: "Cygwin" <[EMAIL PROTECTED]> Sent: Sunday, March 14, 2004 2:36 AM Subject: RE: cp.exe bug > > Problem: > > fileutils version 4.1-2, specifically: cp.exe does not work pro

RE: cp.exe bug

2004-03-14 Thread Ross Boulet
> Problem: > fileutils version 4.1-2, specifically: cp.exe does not work properly. > > System Info: > Windows 2000, Cygwin DLL version 1.5.7 > > Reproducing from prompt: > prompt> cp some_file ./bin/ > > Output: > cp: `some_file' and `./bin/some_file' are the same file > > > Reproducing from w

cp.exe bug

2004-03-13 Thread Alan
Problem: fileutils version 4.1-2, specifically: cp.exe does not work properly. System Info: Windows 2000, Cygwin DLL version 1.5.7 Reproducing from prompt: prompt> cp some_file ./bin/ Output: cp: `some_file' and `./bin/some_file' are the same file Reproducing from within Makefile: cp ./some_di