Commit 04f39ead authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #462 from jam7/openssl-j

fix empty openssl library problem on flip c100pa
parents bab9911b ff11ccd7
......@@ -15,7 +15,8 @@ class Openssl < Package
end
def self.install
system "make", "INSTALL_PREFIX=#{CREW_DEST_DIR}", "install"
# installing using multi cores may cause empty libssl.so.1.0.0 or libcrypto.so.1.0.0 problem
system "make", "-j1", "INSTALL_PREFIX=#{CREW_DEST_DIR}", "install"
# remove all files pretended to install /etc/ssl (use system's /etc/ssl as is)
system "rm", "-rf", "#{CREW_DEST_DIR}/etc"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment