diff --git a/mfbt/double-conversion/GIT-INFO b/mfbt/double-conversion/GIT-INFO new file mode 100644 index 000000000000..37079955ced8 --- /dev/null +++ b/mfbt/double-conversion/GIT-INFO @@ -0,0 +1,9 @@ +commit d8d4e668ee1e6e10b728f0671a89b07d7c4d45be +Merge: 79fb300 48b5e70 +Author: Florian Loitsch +Date: Wed Nov 23 19:14:38 2016 +0100 + + Merge pull request #39 from uburuntu/master + + Some small fixes: compilation, null ptr derefence and const qualifiers + diff --git a/mfbt/double-conversion/update.sh b/mfbt/double-conversion/update.sh index 879bb5829b0e..a7be830b5315 100755 --- a/mfbt/double-conversion/update.sh +++ b/mfbt/double-conversion/update.sh @@ -4,9 +4,7 @@ # # Copies the needed files from a directory containing the original # double-conversion source that we need. If no revision is specified, the tip -# revision is used. - -# This was last updated with git rev d8d4e668ee1e6e10b728f0671a89b07d7c4d45be. +# revision is used. See GIT-INFO for the last revision used. set -e @@ -22,8 +20,7 @@ LOCAL_CLONE="$TMPDIR/double-conversion" git clone https://github.com/google/double-conversion.git "$LOCAL_CLONE" -REV="" - +# If a particular revision was requested, check it out. if [ "$1" != "" ]; then git -C "$LOCAL_CLONE" checkout "$1" fi @@ -71,3 +68,6 @@ done # Update Mercurial file status. hg addremove "$DEST" + +# Note the revision used in this update. +git -C "$LOCAL_CLONE" show > ./GIT-INFO