mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 20:29:35 +01:00
fix wscript version derivation from git version info
This commit is contained in:
parent
eb72436911
commit
89742f77a2
1 changed files with 2 additions and 2 deletions
4
wscript
4
wscript
|
|
@ -35,8 +35,8 @@ else:
|
|||
|
||||
parts = rev.split ('.')
|
||||
MAJOR = parts[0]
|
||||
MINOR = parts[1]
|
||||
other = parts[2].split ('-')
|
||||
other = parts[1].split ('-')
|
||||
MINOR = other[0]
|
||||
if len(other) > 1:
|
||||
MICRO = other[0]
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue