diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-22 06:30:40 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-22 06:30:40 +0000 |
| commit | d925ba0dcbe1c64c5bd3becded00590b3dbcfea4 (patch) | |
| tree | f6503f55bf6db6348ad008bb5ffde44161964826 | |
| parent | a6aba4f6ca7f5e9122379a40284089264f05f369 (diff) | |
| download | ruby-d925ba0dcbe1c64c5bd3becded00590b3dbcfea4.tar.gz ruby-d925ba0dcbe1c64c5bd3becded00590b3dbcfea4.tar.xz ruby-d925ba0dcbe1c64c5bd3becded00590b3dbcfea4.zip | |
* */Makefile.sub (MFLAGS): define unless defined.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | bcc32/Makefile.sub | 4 | ||||
| -rw-r--r-- | win32/Makefile.sub | 4 | ||||
| -rw-r--r-- | wince/Makefile.sub | 4 |
4 files changed, 16 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Sat Dec 22 15:30:13 2007 NAKAMURA Usaku <usa@ruby-lang.org> + + * */Makefile.sub (MFLAGS): define unless defined. + Sat Dec 22 15:17:40 2007 NAKAMURA Usaku <usa@ruby-lang.org> * lib/mkmf.rb ($extmk): set true only when under ext/ or tool/. diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index d478719cc..4ff86f8e7 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -3,6 +3,10 @@ SHELL = $(COMSPEC) MKFILES = Makefile +!ifndef MFLAGS +MFLAGS=- +!endif + #### Start of system configuration section. #### !ifndef OS OS = bccwin32 diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 60e887dbb..ffe25d5e2 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -4,6 +4,10 @@ SHELL = $(COMSPEC) MKFILES = Makefile NULL = nul +!ifndef MFLAGS +MFLAGS=- +!endif + #### Start of system configuration section. #### !if defined(pathlist) diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 8ac4d0220..c60ac9e92 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -4,6 +4,10 @@ SHELL = $(COMSPEC) MKFILES = Makefile NULL = nul +!ifndef MFLAGS +MFLAGS=- +!endif + #### Start of system configuration section. #### ## variables may be overridden by $(compile_dir)/Makefile |
