Fix the wrong directory `host-bin` to `host/bin`.

Where `mruby-config` command should be generated.
parent 2ddfd50d
......@@ -7,7 +7,7 @@ MRuby::Gem::Specification.new('mruby-bin-config') do |spec|
spec.summary = "#{name} command"
if iscross
mruby_config_dir = "#{build.build_dir}/host-bin"
mruby_config_dir = "#{build.build_dir}/host/bin"
else
mruby_config_dir = "#{build.build_dir}/bin"
end
......@@ -28,6 +28,7 @@ MRuby::Gem::Specification.new('mruby-bin-config') do |spec|
config = Hash[File.readlines(make_cfg).map!(&:chomp).map! {|l|
l.gsub('\\"', '"').split(' = ', 2).map! {|s| s.sub(/^(?=.)/, 'echo ')}
}]
pp config
tmplt = File.read(tmplt_path)
File.write(t.name, tmplt.gsub(/(#{Regexp.union(*config.keys)})\b/, config))
chmod(0755, t.name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment