diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 02:56:33 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 02:56:33 +0000 |
| commit | 4288f8fd88c866bb50b8aba743e3d7ea31a7fc99 (patch) | |
| tree | 92c29128ec3ddba40799d790758dc8beedaf80d5 /ChangeLog | |
| parent | 1b5ca8e6174878a3554346f1c53567040a532be2 (diff) | |
| download | ruby-4288f8fd88c866bb50b8aba743e3d7ea31a7fc99.tar.gz ruby-4288f8fd88c866bb50b8aba743e3d7ea31a7fc99.tar.xz ruby-4288f8fd88c866bb50b8aba743e3d7ea31a7fc99.zip | |
* common.mk: should not pass MAKEFLAGS to recursive make.
+ normal make: MFLAGS are set and command line options and macros
are all passed silently.
+ GNU make: ditto, and all options and macros in MAKEFLAGS are in
effect.
+ nmake: MFLAGS is not set and MAKEFLAGS has only options without
hyphen, no macros exist in any variables.
+ Borland make: ditto, and command line macros cannot override
macros in makefile, so passing them is vain.
* {bcc32,win{32,ce}}/Makefile.sub (SET_MAKE): set MFLAGS which is not
set by default, to get rid of chaotic situation of MFLAGS/MAKEFLAGS.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 21 |
1 files changed, 18 insertions, 3 deletions
@@ -1,3 +1,18 @@ +Mon Dec 24 11:56:31 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * common.mk: should not pass MAKEFLAGS to recursive make. + + normal make: MFLAGS are set and command line options and macros + are all passed silently. + + GNU make: ditto, and all options and macros in MAKEFLAGS are in + effect. + + nmake: MFLAGS is not set and MAKEFLAGS has only options without + hyphen, no macros exist in any variables. + + Borland make: ditto, and command line macros cannot override + macros in makefile, so passing them is vain. + + * {bcc32,win{32,ce}}/Makefile.sub (SET_MAKE): set MFLAGS which is not + set by default, to get rid of chaotic situation of MFLAGS/MAKEFLAGS. + Mon Dec 24 11:32:44 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * string.c (rb_str_comparable): fixed to keep transitivity. @@ -6,19 +21,19 @@ Mon Dec 24 11:32:44 2007 Yukihiro Matsumoto <matz@ruby-lang.org> Mon Dec 24 11:20:31 2007 Eric Hodel <drbrain@segment7.net> * lib/rdoc/ri/ri_options.rb: Fix display of GEMDIRS, make command - examples match ri's name. + examples match ri's name. * lib/rdoc/ri/ri_paths.rb: Only allow latest ri dirs in ri output. Mon Dec 24 10:49:04 2007 Eric Hodel <drbrain@segment7.net> * lib/uri/mailto.rb, lib/uri/common.rb: Fix Regexp warnings. Patch - #16524 from Kornelius Kalnbach, [ruby-core:14302]. + #16524 from Kornelius Kalnbach, [ruby-core:14302]. Mon Dec 24 10:37:38 2007 Eric Hodel <drbrain@segment7.net> * gem_prelude.rb: Remove methods from Gem, not QuickLoader, to fix - warnings. + warnings. Mon Dec 24 09:45:45 2007 Martin Duerst <duerst@it.aoyama.ac.jp> |
