summaryrefslogtreecommitdiffstats
path: root/autobuild.rb
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2020-04-16 13:52:14 +0200
committerDan Fandrich <dan@coneharvesters.com>2020-04-16 14:09:13 +0200
commit0bc6de6f0102cc78d5ac8ad2750f908a9b409a1a (patch)
treed893df0a9f69329db4ec003d3f37f7428fda3dbe /autobuild.rb
parent1ffc36ab7b1e5d9790170c70cfd7f9affbf0a734 (diff)
downloadautobuild-0bc6de6f0102cc78d5ac8ad2750f908a9b409a1a.tar
autobuild-0bc6de6f0102cc78d5ac8ad2750f908a9b409a1a.tar.gz
autobuild-0bc6de6f0102cc78d5ac8ad2750f908a9b409a1a.tar.bz2
autobuild-0bc6de6f0102cc78d5ac8ad2750f908a9b409a1a.tar.xz
autobuild-0bc6de6f0102cc78d5ac8ad2750f908a9b409a1a.zip
Add rust & fix C# detection and add a few more detected bugs.
Diffstat (limited to 'autobuild.rb')
-rwxr-xr-xautobuild.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/autobuild.rb b/autobuild.rb
index ae14e98..373d8cc 100755
--- a/autobuild.rb
+++ b/autobuild.rb
@@ -51,7 +51,7 @@ def find_attributes(build_dir)
if name =~ /^(bwbasic|yabasic|mono-basic)$/ then
attr[:lang_basic] = true
end
- if name =~ /^mono$/ then
+ if name =~ /^mono-core$/ then
attr[:lang_dotnet] = true
end
if name =~ /^erlang-compiler$/ then
@@ -110,6 +110,9 @@ def find_attributes(build_dir)
if name =~ /^(ruby-devel|lib(64)?ruby[0-9])/ then
attr[:lang_ruby] = true
end
+ if name =~ /^rust$/ then
+ attr[:lang_rust] = true
+ end
if name =~ /^tcl$/ then
attr[:lang_tcl] = true
end