Fix build when product.version is mangled (#679)

Strip line breaks when reading product.version, as Git can mangle the line breaks if autocrlf is configured, resulting in `SM_BUILD_TAG` getting defined with a linebreak.
This commit is contained in:
thewavelength
2017-09-10 01:17:35 +01:00
committed by Asher Baker
parent 3d461ecea1
commit 79ba2835f6
+1 -1
View File
@@ -50,7 +50,7 @@ def output_version_headers():
count, shorthash, longhash = get_git_version()
with open(os.path.join(SourceFolder, 'product.version')) as fp:
contents = fp.read()
contents = fp.read().strip()
m = re.match('(\d+)\.(\d+)\.(\d+)-?(.*)', contents)
if m == None:
raise Exception('Could not detremine product version')