This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Make 3.77 problem, Drive letter colon



 Version 3.77 has problems that version 3.75 does not.

Command executed:

make all  

The following makefile fails on version 3.77 but not on 3.75
----------------------------------------
all : E:\Projects\a.txt
	echo 'Done'

E:\Projects\a.txt :
	echo 'Hello' >E:\Projects\a.txt
----------------------------------------
Error reported:
makefile:4: *** target pattern contains no `%'.  Stop.
----------------------------------------
	

The following works on both versions
----------------------------------------
all : \\E\Projects\a.txt
	echo 'Done'

\\E\Projects\a.txt :
	echo 'Hello' >\\E\Projects\a.txt
----------------------------------------


I suspect a bug fix is needed to handle the windows drive letter colon.

NOTE: I also tried the following commands which still give the same
failure:

 make --unix all
 make --win32 all




	Lyndon

 
-- 

Lyndon Homewood                    Software Engineer (Process Systems)

MathEngine PLC, Oxford Centre for Innovation, Mill St, Oxford, OX2 0JX
Tel: +44 1865 799416  Fax: +44 1865 799401   http://www.mathengine.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]