1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Bug #24732 Executables do not include Vista manifests

- Cleanup typo.
- Make sure to only embedded four part numberic version.


CMakeLists.txt:
  Bug #24732 Executables do not include Vista manifests
  - Correct typo in manifest detection logic.
win/create_manifest.js:
  Bug #24732 Executables do not include Vista manifests
  - Remove -* from the end of version string before embedding
  into manifest.
This commit is contained in:
unknown
2007-06-01 16:48:23 -04:00
parent 07c7cf1288
commit 97061f1b97
2 changed files with 6 additions and 2 deletions

View File

@ -27,7 +27,11 @@ try
var app_name= parts[1];
break;
case "version":
var app_version= parts[1];
var supp_version= parts[1];
// Clean up the supplied version string.
var end= supp_version.indexOf("-");
if (end == -1) end= supp_version.length;
var app_version= supp_version.substring(0, end);
app_version+= ".0";
break;
case "arch":