2 # SPDX-License-Identifier: (GPL-2.0-only OR LGPL-2.1-only)
4 # First argument is the path to the lttng modules sources.
5 TOP_LTTNG_MODULES_DIR
="$1"
9 if test -x "$(which git 2>&1;true)" && test -r "${TOP_LTTNG_MODULES_DIR}/.git"; then
10 GIT_VERSION_STR
="$(cd "${TOP_LTTNG_MODULES_DIR}" && git describe --tags --dirty 2> /dev/null)"
11 GIT_CURRENT_TAG
="$(cd "${TOP_LTTNG_MODULES_DIR}" && git describe --tags --exact-match --match="v
[0-9]*" HEAD 2> /dev/null)"
13 GIT_VERSION
="${GIT_VERSION_STR}"
15 if ! echo "${GIT_VERSION_STR}" |
grep -- "-dirty" >/dev
/null
&& test "x$GIT_CURRENT_TAG" != "x"; then
This page took 0.02959 seconds and 4 git commands to generate.