Created
May 25, 2014 10:40
-
-
Save itiut/81d4264f50832f132b71 to your computer and use it in GitHub Desktop.
linuxbrewでopenssl-1.0.1gのmanページのインストールに失敗するときの回避策 ref: http://qiita.com/itiut@github/items/12c277b5d459989dbf5d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install openssl | |
==> Downloading https://www.openssl.org/source/openssl-1.0.1g.tar.gz | |
######################################################################## 100.0% | |
==> perl ./Configure --prefix=/home/itiut/.linuxbrew/Cellar/openssl/1.0.1g --openssldir=/home/itiut/.linuxbrew/etc/openssl zlib-dynamic shared enable-cms linux-x86_64 | |
==> make depend | |
==> make | |
==> make test | |
==> make install MANDIR=/home/itiut/.linuxbrew/Cellar/openssl/1.0.1g/share/man MANSUFFIX=ssl | |
cms.pod around line 465: Expected text after =item, not a number | |
cms.pod around line 470: Expected text after =item, not a number | |
cms.pod around line 474: Expected text after =item, not a number | |
POD document had syntax errors at /usr/bin/pod2man line 71. | |
make: *** [install_docs] Error 255 | |
READ THIS: https://github.com/Homebrew/homebrew/wiki/troubleshooting | |
These open issues may also help: | |
openssl failed to build on 10.9 (https://github.com/Homebrew/homebrew/issues/29238) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- original/openssl.rb 2014-05-25 10:27:26.507374615 +0000 | |
+++ fix/openssl.rb 2014-05-25 10:27:55.383373710 +0000 | |
@@ -69,7 +69,7 @@ | |
end | |
end | |
- system "make", "install", "MANDIR=#{man}", "MANSUFFIX=ssl" | |
+ system "make", "install_sw", "MANDIR=#{man}", "MANSUFFIX=ssl" | |
if build.universal? | |
%w[libcrypto libssl].each do |libname| |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment