Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Add Solaris OS support #259

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/capybara_webkit_builder.rb
Expand Up @@ -17,6 +17,8 @@ def makefile
system("#{qmake} -spec linux-g++") system("#{qmake} -spec linux-g++")
when /freebsd/ when /freebsd/
system("#{qmake} -spec freebsd-g++") system("#{qmake} -spec freebsd-g++")
when /solaris/
system("#{qmake} -spec solaris-g++")
else else
system("#{qmake} -spec macx-g++") system("#{qmake} -spec macx-g++")
end end
Expand Down