diff options
author | Evan Martin <martine@danga.com> | 2010-11-29 03:21:21 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2010-11-29 03:21:21 (GMT) |
commit | cf5d4792ff4b6f8291aadc21bfa2e9aaab0df62a (patch) | |
tree | 4cbaa608b7c396b3cb4c348d512cbb774612f7ee /bootstrap.sh | |
parent | 73d5d7f980b31afbd5c8d7374e072651298d7bc4 (diff) | |
download | Ninja-cf5d4792ff4b6f8291aadc21bfa2e9aaab0df62a.zip Ninja-cf5d4792ff4b6f8291aadc21bfa2e9aaab0df62a.tar.gz Ninja-cf5d4792ff4b6f8291aadc21bfa2e9aaab0df62a.tar.bz2 |
update bootstrap
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index d9a2e2b..df726b5 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -4,7 +4,8 @@ set -e srcs=$(ls *.cc | grep -v test) echo "Building stage 1..." -g++ -o ninja $srcs +g++ -o ninja.bootstrap $srcs echo "Building final result..." -./ninja ninja +./ninja.bootstrap ninja +rm ninja.bootstrap echo "Done!" |