aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMatthieu Dubet2011-12-28 11:19:21 +0100
committerAdam Vandenberg2012-01-28 20:05:05 -0800
commit9c5d4a3a9b910c49affab8471b0f3ebcfa9451e7 (patch)
treec73896b83dc7748e62487301f9c2ed3e26a3ff3e /Library/Formula
parenta1529c1fe27dfd65e46ec99035af221790322c68 (diff)
downloadhomebrew-9c5d4a3a9b910c49affab8471b0f3ebcfa9451e7.tar.bz2
Fix Ninja build
Ninja bootstrap script is now in Python instead of shell Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ninja.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/ninja.rb b/Library/Formula/ninja.rb
index f98f70c5f..422177a20 100644
--- a/Library/Formula/ninja.rb
+++ b/Library/Formula/ninja.rb
@@ -5,7 +5,7 @@ class Ninja < Formula
homepage 'https://github.com/martine/ninja'
def install
- system "./bootstrap.sh"
+ system "./bootstrap.py"
bin.install "ninja"
end
end