mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (checking_for): ignore toplevel.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@28047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fdef06a915
commit
006f384f8e
3 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri May 28 10:40:37 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (checking_for): ignore toplevel.
|
||||
|
||||
Wed May 26 19:55:33 2010 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* file.c (file_expand_path): revert a part of r22392. it's commit miss.
|
||||
|
|
|
@ -682,7 +682,7 @@ end
|
|||
# Internal use only.
|
||||
#
|
||||
def checking_for(m, fmt = nil)
|
||||
f = caller[0][/in `(.*)'$/, 1] and f << ": " #` for vim #'
|
||||
f = caller[0][/in `([^<].*)'$/, 1] and f << ": " #` for vim #'
|
||||
m = "checking #{/\Acheck/ =~ f ? '' : 'for '}#{m}... "
|
||||
message "%s", m
|
||||
a = r = nil
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.8.8"
|
||||
#define RUBY_RELEASE_DATE "2010-05-26"
|
||||
#define RUBY_RELEASE_DATE "2010-05-28"
|
||||
#define RUBY_VERSION_CODE 188
|
||||
#define RUBY_RELEASE_CODE 20100526
|
||||
#define RUBY_RELEASE_CODE 20100528
|
||||
#define RUBY_PATCHLEVEL -1
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 8
|
||||
#define RUBY_RELEASE_YEAR 2010
|
||||
#define RUBY_RELEASE_MONTH 5
|
||||
#define RUBY_RELEASE_DAY 26
|
||||
#define RUBY_RELEASE_DAY 28
|
||||
|
||||
#define NO_STRING_LITERAL_CONCATENATION 1
|
||||
#ifdef RUBY_EXTERN
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue