From 9b3a15a527228837b10987b58f1fc5d27c315de0 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Sat, 12 May 2018 08:29:57 +0200 Subject: [PATCH] [Bugfix] Fix the version string for timestamped builds --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 10207dc..1ddf206 100644 --- a/meson.build +++ b/meson.build @@ -25,7 +25,7 @@ if matrix_glib_released == '1' matrix_glib_maybe_datestamp = '' else datestamp = run_command('date', '+.%Y%m%d') - matrix_glib_maybe_datestamp = '.' + datestamp.stdout().strip() + matrix_glib_maybe_datestamp = datestamp.stdout().strip() endif matrix_glib_version = matrix_glib_full_version + matrix_glib_maybe_datestamp