aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2015-02-16 18:27:30 +0000
committerMike McQuaid2015-02-17 09:13:08 +0000
commit002eb6e421813801097a575b7b1caa17b7991060 (patch)
tree04278184fd07eca607b578a02c1917509f2217e9 /Library/Formula
parent812d71d0c195594c9a28dc6a4c688285fe371cb4 (diff)
downloadhomebrew-002eb6e421813801097a575b7b1caa17b7991060.tar.bz2
polarssl: fix sha256
Closes #36844 References: * https://github.com/polarssl/polarssl/issues/173 * https://polarssl.org/tech-updates/releases/mbedtls-1.3.10-released Closes #36863. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/polarssl.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/polarssl.rb b/Library/Formula/polarssl.rb
index 7e3e0fc32..b840e146d 100644
--- a/Library/Formula/polarssl.rb
+++ b/Library/Formula/polarssl.rb
@@ -2,7 +2,7 @@ class Polarssl < Formula
homepage "https://polarssl.org/"
# 1.4.0 will need dependents recompiled due to breaking binary compat.
url "https://polarssl.org/download/mbedtls-1.3.10-gpl.tgz"
- sha256 "d221b02acc96fda8259d9e57798dee9de72977902afb0c63e552b5510c6503a3"
+ sha256 "746fd88e0c6623691fc56c4eed52e40a57b2da0ac80f6dd8995094aa6adb407e"
head "https://github.com/polarssl/polarssl.git"
@@ -29,9 +29,9 @@ class Polarssl < Formula
system "make"
system "make", "install"
# Why does PolarSSL ship with GNU's Hello included? Let's remove that.
- rm "#{bin}/hello"
+ rm_f "#{bin}/hello"
# Remove the pointless example application that hooks into system OpenSSL
- rm "#{bin}/o_p_test"
+ rm_f "#{bin}/o_p_test"
end
test do