mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 21:44:30 +02:00

(https://github.com/ruby/erb/pull/39) * Skip using the extension for truffleruby as well * Just skip building the C extension for TruffleRuby * Skip rake compile for truffleruby * Use resolve_feature_path * Revert "Use resolve_feature_path" This reverts commitacc1e0c0ff
. * Use resolve_feature_path with LoadError guard85dcb08439
7 lines
143 B
Ruby
7 lines
143 B
Ruby
require 'mkmf'
|
|
|
|
if RUBY_ENGINE == 'truffleruby'
|
|
File.write('Makefile', dummy_makefile($srcdir).join)
|
|
else
|
|
create_makefile 'erb/escape'
|
|
end
|