mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merges r22441 from trunk into ruby_1_9_1.
-- * template/fake.rb.in: extracted from Makefile.in. * configure.in (fake.rb): prefixed with $(arch)-. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@23402 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ce14c2c061
commit
1e09355e88
4 changed files with 26 additions and 17 deletions
|
|
@ -1,3 +1,9 @@
|
|||
Thu Feb 19 15:47:11 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* template/fake.rb.in: extracted from Makefile.in.
|
||||
|
||||
* configure.in (fake.rb): prefixed with $(arch)-.
|
||||
|
||||
Sun Apr 26 20:21:39 2009 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* .gitignore: added.
|
||||
|
|
|
|||
20
Makefile.in
20
Makefile.in
|
|
@ -28,6 +28,7 @@ datadir = @datadir@
|
|||
arch = @arch@
|
||||
sitearch = @sitearch@
|
||||
sitedir = @sitedir@
|
||||
ruby_version = @ruby_version@
|
||||
|
||||
TESTUI = console
|
||||
TESTS =
|
||||
|
|
@ -152,22 +153,9 @@ $(LIBRUBY_SO):
|
|||
File.symlink "$(LIBRUBY_SO)", link}' \
|
||||
$(LIBRUBY_ALIASES) || true
|
||||
|
||||
fake.rb: Makefile
|
||||
@echo ' \
|
||||
class Object; \
|
||||
CROSS_COMPILING = RUBY_PLATFORM; \
|
||||
remove_const :RUBY_PLATFORM; \
|
||||
remove_const :RUBY_VERSION; \
|
||||
RUBY_PLATFORM = "@arch@"; \
|
||||
RUBY_VERSION = "@MAJOR@.@MINOR@.@TEENY@"; \
|
||||
end; \
|
||||
if RUBY_PLATFORM =~ /mswin|bccwin|mingw/; \
|
||||
class File; \
|
||||
remove_const :ALT_SEPARATOR; \
|
||||
ALT_SEPARATOR = "\\"; \
|
||||
end; \
|
||||
end; \
|
||||
' > $@
|
||||
fake: $(arch)-fake.rb
|
||||
$(arch)-fake.rb: config.status
|
||||
@./config.status --file=$@:$(srcdir)/template/fake.rb.in
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(srcdir)/enc/Makefile.in
|
||||
|
||||
|
|
|
|||
|
|
@ -1670,7 +1670,7 @@ fi
|
|||
|
||||
if test x"$cross_compiling" = xyes; then
|
||||
test x"$MINIRUBY" = x && MINIRUBY="${RUBY-ruby} -I`pwd` -rfake"
|
||||
PREP=fake.rb
|
||||
PREP='$(arch)-fake.rb'
|
||||
RUNRUBY='$(MINIRUBY) -I`cd $(srcdir)/lib; pwd`'
|
||||
else
|
||||
MINIRUBY='./miniruby$(EXEEXT) -I$(srcdir)/lib'
|
||||
|
|
|
|||
15
template/fake.rb.in
Normal file
15
template/fake.rb.in
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
class Object
|
||||
CROSS_COMPILING = RUBY_PLATFORM
|
||||
remove_const :RUBY_PLATFORM
|
||||
remove_const :RUBY_VERSION
|
||||
remove_const :RUBY_DESCRIPTION if defined?(RUBY_DESCRIPTION)
|
||||
RUBY_PLATFORM = "@arch@"
|
||||
RUBY_VERSION = "@MAJOR@.@MINOR@.@TEENY@"
|
||||
RUBY_DESCRIPTION = "ruby #{RUBY_VERSION} (#{Time.now.strftime("%Y-%m-%d")}) [#{RUBY_PLATFORM}]"
|
||||
end
|
||||
if RUBY_PLATFORM =~ /mswin|bccwin|mingw/
|
||||
class File
|
||||
remove_const :ALT_SEPARATOR
|
||||
ALT_SEPARATOR = "\\"
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue