diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | wince/Makefile.sub | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ Tue Sep 26 15:29:55 2006 NAKAMURA Usaku <[email protected]> - * win32/Makefile.sub (CPP): check predefined value. + * {win32,wince}/Makefile.sub (CPP): check predefined value. Tue Sep 26 07:55:16 2006 Yukihiro Matsumoto <[email protected]> diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 45686e1ccf..a2afe7997a 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -34,7 +34,7 @@ VPATH = $(srcdir);$(srcdir)/missing;$(srcdir)/wince !if !defined(CC) CC = cl !endif -!if !defined(CPP) +!if !defined(CPP) || "$(CPP)" == "cl" CPP = $(CC) -E !endif !if !defined(YACC) |