summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2022-11-15 00:31:51 +0100
committerChristian Persch <chpe@src.gnome.org>2022-11-15 00:31:51 +0100
commitfc3c7b4358cdfacec0285a84971a27b17b7498b5 (patch)
tree776abec27c6e9de91ed1f053205a2d5883807494
parent862561bcbd1547783aca0c56d799cadc087bb2b5 (diff)
downloadvte-fc3c7b4358cdfacec0285a84971a27b17b7498b5.tar.gz
build: Print warning on unstable release
-rw-r--r--meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 898ffd36..28c0911c 100644
--- a/meson.build
+++ b/meson.build
@@ -738,4 +738,10 @@ output += '\n'
output += ' Prefix: ' + get_option('prefix') + '\n'
message(output)
+# Check stable/unstable status
+
+if (vte_minor_version % 2) != 0
+ warning('This is an unstable development release!\n')
+endif
+
# Done