ruby: fixed build with Fujitsu compilers (#16889)

This commit is contained in:
takanori-ihara 2020-06-02 18:07:48 +09:00 committed by GitHub
parent c7851f896c
commit b60ab6eefd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,6 +61,8 @@ def configure_args(self):
args.append("--with-readline-dir=%s"
% self.spec['readline'].prefix)
args.append('--with-tk=%s' % self.spec['tk'].prefix)
if self.spec.satisfies("%fj"):
args.append('--disable-dtrace')
return args
def setup_dependent_build_environment(self, env, dependent_spec):