1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

Do not display an error when gmake is not present

This commit is contained in:
ignisf 2013-02-06 17:32:36 +02:00
parent b070cb1dd3
commit b8879a01b7

View file

@ -4,7 +4,7 @@ module Libv8
def make
unless defined?(@make)
@make = `which gmake`.chomp
@make = `which gmake 2> /dev/null`.chomp
@make = `which make`.chomp unless $?.success?
end
@make