summaryrefslogtreecommitdiff
path: root/build-ninja.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build-ninja.sh')
-rwxr-xr-xbuild-ninja.sh13
1 files changed, 10 insertions, 3 deletions
diff --git a/build-ninja.sh b/build-ninja.sh
index c5e9cf3..791618f 100755
--- a/build-ninja.sh
+++ b/build-ninja.sh
@@ -4,7 +4,8 @@
# leaves output in /tmp/prebuilts/ninja/$OS-x86/
PROJ=ninja
-VER=1.6.0
+VER=master
+BASE_VER=v1.6.0
MSVS=2013
source $(dirname "$0")/build-common.sh build-common.sh
@@ -14,9 +15,12 @@ export PATH="$PATH":.
# ninja specific steps
cd $RD
-git clone https://github.com/martine/ninja.git src
+git clone https://android.googlesource.com/platform/external/ninja.git src
cd src
-git checkout v$VER
+git remote add upstream https://github.com/martine/ninja.git
+git fetch upstream
+git checkout $VER
+INSTALL_VER=${INSTALL_VER/${VER}/${VER}-$(git rev-parse --short=12 HEAD)}
if [[ "$OS" == "windows" ]] ; then
PLATFORM="--platform=msvc"
fi
@@ -25,4 +29,7 @@ fi
# install
cp $RD/src/ninja $INSTALL
+EXTRA_FILE="LICENSE MODULE_LICENSE_APL"
+EXTRA_COMMIT_MSG=$(echo -e "\n\nChanges since ${BASE_VER}:" && git log --oneline --abbrev=12 ${BASE_VER}..HEAD)
+
commit_and_push