From b9425474a1006a2f713462e171894f476c58bbb7 Mon Sep 17 00:00:00 2001 From: jj Date: Mon, 2 Jul 2012 21:57:53 +0200 Subject: [PATCH] ruby: fix codegen for darwin --- plugins/ruby/codegen.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ruby/codegen.pl b/plugins/ruby/codegen.pl index c7fb210c9..1fcebfffe 100755 --- a/plugins/ruby/codegen.pl +++ b/plugins/ruby/codegen.pl @@ -8,7 +8,7 @@ use XML::LibXML; our @lines_rb; my $os; -if ($^O =~ /linux/i) { +if ($^O =~ /linux/i or $^O =~ /darwin/i) { $os = 'linux'; } else { $os = 'windows';