aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-04 11:28:25 -0700
committerAdam Vandenberg2014-05-04 11:28:32 -0700
commit9c356d871e17e8a1fe3db48922ecd327de3b99e3 (patch)
tree7c03c244af130eee5aad475ddc8d319d0d3d41c6 /Library/Formula
parent9977bbd461a97895f28157936b784a937bc23223 (diff)
downloadhomebrew-9c356d871e17e8a1fe3db48922ecd327de3b99e3.tar.bz2
makensis: don't strip
Closes #28718.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/makensis.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/makensis.rb b/Library/Formula/makensis.rb
index 723088d73..6f9c1e384 100644
--- a/Library/Formula/makensis.rb
+++ b/Library/Formula/makensis.rb
@@ -23,7 +23,8 @@ class Makensis < Formula
# https://sourceforge.net/p/nsis/bugs/1085/
ENV.libstdcxx if ENV.compiler == :clang
- scons "makensis"
+ # Don't strip, see https://github.com/Homebrew/homebrew/issues/28718
+ scons "STRIP=0", "makensis"
bin.install "build/release/makensis/makensis"
(share/'nsis').install resource('nsis')
end