blob: f62488d37c0eff6477fb73afcc198bd7cd99c903 [file] [log] [blame]
#!/bin/sh
# Copyright 2014 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\(\[srd_package_version_(major|minor|micro)\], \[([0-9]+)\]\)/,
matches) { version[matches[1]] = matches[2] }
END { print version["major"] "." version["minor"] "." version["micro"] }' \
"$1/configure.ac"