Skip to content

Commit

Permalink
Merge pull request #770 from hreinecke/fix-join.v2
Browse files Browse the repository at this point in the history
meson.build: fixup 'join' syntax
  • Loading branch information
hreinecke authored Jan 18, 2024
2 parents 267d2ab + 8b81474 commit 11d0a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ project(

vstr = meson.project_version().split('-rc')[0]
vid = vstr.split('.')
library_version = '.'.join(vid[0], vid[1])
library_version = '.'.join([vid[0], vid[1]])
if vid.length() == 3
library_version = '.'.join(library_version, vid[2])
library_version = '.'.join([library_version, vid[2]])
else
library_version = library_version + '.0'
endif
Expand Down

0 comments on commit 11d0a89

Please sign in to comment.