From 41217eb01856f4d72b8cb2b5d58aac97c17d35f1 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Fri, 22 Oct 2021 17:01:42 -0700 Subject: [PATCH] build: (fixes #461) Avoid period character in executable names Fix is due to Tommaso Pecorella; the issue affects certain macOS systems --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 1e9c4d9b1..9062befb1 100644 --- a/wscript +++ b/wscript @@ -68,7 +68,7 @@ with open("VERSION", "rt") as f: VERSION = f.read().strip() APPNAME = 'ns' -wutils.VERSION = VERSION +wutils.VERSION = VERSION.replace(".", "-") wutils.APPNAME = APPNAME # we don't use VNUM anymore (see bug #1327 for details)