aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-04-17 18:24:55 -0500
committerJack Nagel2012-04-17 18:25:30 -0500
commited5402bb3684c77a26c4a8feaa7d79a790ded167 (patch)
tree12a6aebe41c359264b592a4f1d6d6741daedc7a4 /Library/Formula
parentd011bd0c5d5c0ddf676d38585c31e8bd4b9fbf3b (diff)
downloadhomebrew-ed5402bb3684c77a26c4a8feaa7d79a790ded167.tar.bz2
uwsgi: don't strip symbols
Fixes #11705. Probably fixes #11674. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/uwsgi.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/uwsgi.rb b/Library/Formula/uwsgi.rb
index f7aa1e4f6..6917c5ba0 100644
--- a/Library/Formula/uwsgi.rb
+++ b/Library/Formula/uwsgi.rb
@@ -5,6 +5,8 @@ class Uwsgi < Formula
url 'http://projects.unbit.it/downloads/uwsgi-1.1.2.tar.gz'
md5 '69d2a89e283a047c750dde858a384e25'
+ skip_clean :all # stripping breaks the executable
+
def install
# Find the arch for the Python we are building against.
# We remove 'ppc' support, so we can pass Intel-optimized CFLAGS.
@@ -15,7 +17,7 @@ class Uwsgi < Formula
ENV.append 'CFLAGS', arch_flags
ENV.append 'LDFLAGS', arch_flags
- system "python uwsgiconfig.py --build"
+ system "python", "uwsgiconfig.py", "--build"
bin.install "uwsgi"
end
end