Skip to content

Commit fa05233

Browse files
committed
autoreconf seems not available on macOS
1 parent 32b9723 commit fa05233

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mx.truffleruby/mx_truffleruby.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ def getBuildTask(self, args):
135135

136136
class YARPNativeBuildTask(mx.NativeBuildTask):
137137
def build(self):
138-
mx.run(['autoreconf'], cwd=self.subject.dir)
138+
mx.run(['autoconf'], cwd=self.subject.dir)
139+
mx.run(['autoheader'], cwd=self.subject.dir)
139140
mx.run(['./configure'], cwd=self.subject.dir)
140141
super(YARPNativeBuildTask, self).build() # make
141142

0 commit comments

Comments
 (0)