build: (fixes #461) Avoid period character in executable names

Fix is due to Tommaso Pecorella; the issue affects certain macOS systems
This commit is contained in:
Tom Henderson
2021-10-22 17:01:42 -07:00
parent e844dfd1d7
commit 41217eb018

View File

@@ -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)