mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix bug in getBuildInfo.awk that happens only when building a release version
This commit is contained in:
parent
c58509d655
commit
3ce3b36830
@ -24,6 +24,9 @@
|
|||||||
build = dict[status]
|
build = dict[status]
|
||||||
print "#define MyBuildNumber \"" (build * 100) "\""
|
print "#define MyBuildNumber \"" (build * 100) "\""
|
||||||
|
|
||||||
|
# strip any trailing quote (only happens for a release build)
|
||||||
|
sub("\"","",v[3])
|
||||||
|
|
||||||
# v[1] already includes a leading quote mark
|
# v[1] already includes a leading quote mark
|
||||||
print "#define MyVersionNumbers " v[1] "." v[2] "." v[3] "." (build * 100) "\""
|
print "#define MyVersionNumbers " v[1] "." v[2] "." v[3] "." (build * 100) "\""
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user