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]

Patch for Make 3.79


This patch fixes the "*** target pattern contains no `%'.  Stop." problem with
make 3.79 under cygwin 1.1.1 reported by John Cooper.

bash-2.03# diff read.c.old read.c
307c307
< #if defined (WINDOWS32) || defined (__MSDOS__)
---
> #if defined (WINDOWS32) || defined (__MSDOS__) || defined (__CYGWIN__)
838c838
< #if defined(__MSDOS__) || defined(WINDOWS32)
---
> #if defined(__MSDOS__) || defined(WINDOWS32) || defined(__CYGWIN__)
993c993
< #if defined (WINDOWS32) || defined (__MSDOS__)
---
> #if defined (WINDOWS32) || defined (__MSDOS__) || defined(__CYGWIN__)
1932c1932
< #if defined(WINDOWS32) || defined(__MSDOS__)
---
> #if defined(WINDOWS32) || defined(__MSDOS__) || defined(__CYGWIN__)
2342c2342
< #if defined(__MSDOS__) || defined(WINDOWS32)
---
> #if defined(__MSDOS__) || defined(WINDOWS32) || defined(__CYGWIN__)
bash-2.03#
-- 

Ernest Friedman-Hill  
Distributed Systems Research                     Phone: (925) 294-2154
Sandia National Labs                             FAX:   (925) 294-2234
Org. 8920, MS 9214                               ejfried@ca.sandia.gov
PO Box 969                               http://herzberg.ca.sandia.gov
Livermore, CA 94550

--
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]