aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
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