#!/bin/sh # SPDX-License-Identifier: GPL-2.0-or-later # # On a meson dist run, generate the version string and store it in a file. # This will later be picked up by the utils/gen-version.sh script and used # instead of re-generating it. This way, if we are not building in the upstream # git source tree, the upstream version information will be preserved. cd "$MESON_SOURCE_ROOT" || return ./utils/gen-version.sh > "$MESON_DIST_ROOT"/.tarball-version >
summaryrefslogtreecommitdiff
path: root/src/meson.build
blob: e0ea9c3570afab66bebe575b837643f8aed50ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40