diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-26 06:34:15 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-26 06:34:15 +0000 |
commit | 673f588aaf80f2d8f09ffd1c67d4164e07d3d008 (patch) | |
tree | 434f9b531f098e8dda5e5f3a74b19084468f749b /wince | |
parent | de937a24638196a16157ec77f3f5e4a2505e44ee (diff) |
* {win32,wince}/Makefile.sub (CPP): check predefined value.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince')
-rw-r--r-- | wince/Makefile.sub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 9e171f6730..49467d402d 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) |