blob: 9681e7aaf96e6db66482e29af7fd8e8f8e5aeb6d [file] [log] [blame]
#!/bin/sh
# Copyright 2016 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.
awk -F',' '
BEGIN { RS=")" }
$0 ~ /AC_INIT.*/ {
sub(/^[^0-9]*/, "", $2)
sub(/[^0-9]*$/, "", $2)
print $2
exit
}
' "$1/configure.ac"