Skip to content

Commit

Permalink
Also install tooling extensions. Fixes rubinius#806.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Ford committed Apr 6, 2011
1 parent 75edf04 commit c2992f9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions rakelib/install.rake
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,15 @@ namespace :install do
install_file name, /^lib/, BUILD_CONFIG[:lib_path]
end

# Install C++ extensions. Since we permit configuring where
# to install the C extensions separately from the lib files,
# we have to be more restrictive with the globbing.
#
# TODO: handle this better in daedalus.
FileList["lib/tooling/**/*.#{$dlext}"].each do |name|
install_file name, /^lib/, BUILD_CONFIG[:lib_path]
end

# Install the documentation site
FileList['lib/rubinius/documentation/**/*'].each do |name|
install_file name, /^lib/, BUILD_CONFIG[:lib_path]
Expand Down

0 comments on commit c2992f9

Please sign in to comment.