Changeset 322

Show
Ignore:
Timestamp:
03/25/08 02:28:21 (8 months ago)
Author:
psmedley
Message:

Do not append a - to BUILDVERSION if FIXPACK is blank

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud-2.0/tools/mkversion.cmd

    r257 r322  
    7171parse value versionIn with major'.'minor'.'projVersion 
    7272 
    73 projVers  = versionIn'-'fixpack 
     73if fixpack="" then 
     74        projVers  = versionIn 
     75else 
     76        projVers  = versionIn'-'fixpack 
     77 
    7478projVers2 = major||minor||LEFT(projVersion, 1) 
    7579