Bug 1332797 - Note the double-conversion git revision last used when importing double-conversion code. r=froydnj

--HG--
extra : rebase_source : 16af43fcda79ffc4743fda12c9ce945ee4fd8a26
This commit is contained in:
Jeff Walden 2017-01-24 12:56:06 -08:00
Родитель 5a966975cc
Коммит cd89862c7a
2 изменённых файлов: 14 добавлений и 5 удалений

Просмотреть файл

@ -0,0 +1,9 @@
commit d8d4e668ee1e6e10b728f0671a89b07d7c4d45be
Merge: 79fb300 48b5e70
Author: Florian Loitsch <florian@loitsch.com>
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

Просмотреть файл

@ -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