blob: 0a8e69e9d1eb8f44b26d0037a0d4ec4c103b816d [file] [log] [blame]
#!/bin/sh
# Copyright 2021 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
exec gawk '
match($0, /m4_define\(\[qrtr_(major|minor|micro)_version\], \[([0-9]+)\]\)/,
matches) { version[matches[1]] = matches[2] }
END { print version["major"] "." version["minor"] "." version["micro"] }' \
"$1/configure.ac"