diff options
author | Matthias Maennich <maennich@google.com> | 2019-05-29 12:54:46 +0100 |
---|---|---|
committer | Matthias Maennich <maennich@google.com> | 2019-05-29 12:54:46 +0100 |
commit | 25062fcd10583bc6b70212f997c2e48753e6537e (patch) | |
tree | 33fb541381f521d720b271d2294088122aca1460 /abi | |
parent | d46fd323ff305a7ef638a4ea0d4c9164b4c31115 (diff) |
abi/bootstrap: update libabigail to current master
Until a release (1.7) has been published upstream, we need to build and
use a trunk version of libabigail as we make use of recent
functionality only available in master.
Hence, pin down the libabigail version to a sufficient master commit [1].
[1] https://sourceware.org/git/?p=libabigail.git;a=commit;h=fb70149cb1bacb62209180d5ee59ba7022c7ec85
Change-Id: I6f0527d2d85e5c85690d2f83fa9379ae65ee9ab2
Signed-off-by: Matthias Maennich <maennich@google.com>
Diffstat (limited to 'abi')
-rwxr-xr-x | abi/bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/abi/bootstrap b/abi/bootstrap index bac3c73..dace036 100755 --- a/abi/bootstrap +++ b/abi/bootstrap @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -ABIGAIL_VERSION=1.6 +ABIGAIL_VERSION=fb70149c NUM_CORES=$(cat /proc/cpuinfo | grep -c proc) BASE_DIR=$(readlink -f $(dirname $0)) @@ -48,7 +48,7 @@ else git -C ${LIBABIGAIL_SRC} fetch fi -git -C ${LIBABIGAIL_SRC} checkout libabigail-${ABIGAIL_VERSION} +git -C ${LIBABIGAIL_SRC} checkout ${ABIGAIL_VERSION} # Build libabigail pushd "${LIBABIGAIL_SRC}" |