Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/jruby-cext-c
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@

# A compiler for JRuby+Truffle C extensions

require 'pathname'
require 'yaml'

SULONG_DIR = ENV['SULONG_DIR']
@@ -40,7 +39,7 @@ end
CONFIG = YAML.load_file(CONFIG_FILE)

SRC = Dir[File.join(CEXT_DIR, CONFIG['src'])]
OUT = (Pathname.new(CONFIG['out'])).absolute? ? CONFIG['out'] : File.join(CEXT_DIR, CONFIG['out'])
OUT = File.expand_path(CONFIG['out'], CEXT_DIR)

LL = []

0 comments on commit d6d4ed6

Please sign in to comment.