From e22bdee8085c902b83b2a32d108b615f89f69522 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@musicpd.org>
Date: Mon, 18 Mar 2019 09:58:35 +0100
Subject: [PATCH] win32/res/meson.build: drop tilde suffix from version number
 before splitting

MPD sometimes uses version numbers like "0.22~git" to mark unreleased
versions.  That makes the win32 resource compiler unhappy, because it
expects numbers only.
---
 win32/res/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/win32/res/meson.build b/win32/res/meson.build
index 4a9e536c4..ba021af5f 100644
--- a/win32/res/meson.build
+++ b/win32/res/meson.build
@@ -1,7 +1,7 @@
 windows_conf = configuration_data()
 windows_conf.set('VERSION', meson.project_version())
 
-splitted_version = meson.project_version().split('.')
+splitted_version = meson.project_version().split('~')[0].split('.')
 windows_conf.set('VERSION_MAJOR', splitted_version[0])
 windows_conf.set('VERSION_MINOR', splitted_version.get(1, '0'))
 windows_conf.set('VERSION_REVISION', splitted_version.get(2, '0'))