mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix cross build
* tool/fake.rb: Fix cross build when srcdir is an absolute path. * Makefile.in: PREP dependency is needed when cross build too, not "-r$(arch)-fake" to be used before created. [Fix GH-1125] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
80bedec6c2
commit
bf52a8b6c4
4 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
|||
Sat Dec 5 17:48:25 2015 Lars Kanis <lars@greiz-reinsdorf.de>
|
||||
|
||||
* tool/fake.rb: Fix cross build when srcdir is an absolute path.
|
||||
|
||||
* Makefile.in: PREP dependency is needed when cross build too, not
|
||||
"-r$(arch)-fake" to be used before created. [Fix GH-1125]
|
||||
|
||||
Sat Dec 5 17:26:24 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* hash.c (env_str_new, env_path_str_new): make default string
|
||||
|
|
|
@ -258,7 +258,7 @@ ruby-runner.c: template/ruby-runner.c.in
|
|||
ruby-runner$(EXEEXT): ruby-runner.c
|
||||
$(Q) $(PURIFY) $(CC) $(CFLAGS) $(CPPFLAGS) -DRUBY_INSTALL_NAME=$(RUBY_INSTALL_NAME) $(LDFLAGS) $(LIBS) $(OUTFLAG)$@ ruby-runner.c
|
||||
|
||||
$(RBCONFIG): $($(CROSS_COMPILING:no=)PREP)
|
||||
$(RBCONFIG): $(PREP)
|
||||
|
||||
rbconfig.rb: $(RBCONFIG)
|
||||
|
||||
|
|
|
@ -46,7 +46,8 @@ prehook = proc do |extmk|
|
|||
end
|
||||
join = proc {|*args| File.join(*args).sub!(/\A(?:\.\/)*/, '')}
|
||||
$topdir ||= builddir
|
||||
$top_srcdir ||= join[$topdir, srcdir]
|
||||
$top_srcdir ||= (File.identical?(top_srcdir, dir = join[$topdir, srcdir]) ?
|
||||
dir : top_srcdir)
|
||||
$extout = '$(topdir)/.ext'
|
||||
$extout_prefix = '$(extout)$(target_prefix)/'
|
||||
config = RbConfig::CONFIG
|
||||
|
|
|
@ -1061,9 +1061,7 @@ clean-enc distclean-enc realclean-enc:
|
|||
@-$(MAKE) -f $(ENC_MK) $(MFLAGS) V=$(V) $(@:-enc=)
|
||||
!endif
|
||||
|
||||
!if "$(CROSS_COMPILING)" == "no"
|
||||
$(RBCONFIG): $(PREP)
|
||||
!endif
|
||||
|
||||
$(RCFILES): $(RBCONFIG) $(srcdir)/revision.h $(srcdir)/win32/resource.rb
|
||||
@$(MINIRUBY) $(srcdir)/win32/resource.rb \
|
||||
|
|
Loading…
Reference in a new issue