Lines Matching full:revision
98 # Get upstream SVN and revision number.
105 REVISION=$(get_config_field revision)
106 if [ -z "$REVISION" ]; then
107 echo "ERROR: Can't find upstream revision in upstream.config!"
112 echo "Checking out $SVN_URL@$REVISION"
113 run svn co $SVN_URL@$REVISION libcxx > /dev/null
125 run git commit -m "upstream @$REVISION"
141 echo "Updating to newer upstream revision"
143 run git tag revision-$REVISION HEAD
146 NEW_REVISION=$(svn info | awk '$1 == "Revision:" { print $2; }')
147 echo "Found new revision: $NEW_REVISION (was $REVISION)"
179 run git tag revision-$NEW_REVISION
184 run git rebase revision-$NEW_REVISION
187 run git format-patch -k -o "$BUILD_DIR"/patches.android revision-$NEW_REVISION
210 sed -i -e "s|revision: $REVISION|revision: $NEW_REVISION|" "$NDK_LIBCXX_DIR"/upstream.config