Merge remote-tracking branch 'origin/macos-build'

This commit is contained in:
Kazunari Sekigawa 2018-03-19 10:07:17 +09:00
commit 9368f86b7a
1 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ def SetGlobals():
Usage += " <-c|--clean> : clean the work directory | disabled \n"
Usage += " <-m|--make> : make a compressed DMG file | disabled \n"
Usage += " : <-c|--clean> and <-m|--make> are mutually exclusive | \n"
Usage += " [-q|--qt <ID>] : ID name of deployed Qt | Qt593mp \n"
Usage += " [-q|--qt <ID>] : ID name of deployed Qt | Qt510Xmp \n"
Usage += " [-s|--serial <num>] : DMG serial number | 1 \n"
Usage += " [-?|--?] : print this usage and exit | disabled \n"
Usage += "--------------------------------------------------------------------------------------------------------\n"
@ -117,7 +117,7 @@ def SetGlobals():
OpClean = False
OpMake = False
DMGSerialNum = 1
QtIdentification = "Qt593mp"
QtIdentification = "Qt510Xmp"
Version = GetKLayoutVersionFrom( "./version.sh" )
OccupiedDS = -1
BackgroundPNG = "KLayoutDMG-Back.png"
@ -237,7 +237,7 @@ def ParseCommandLineArguments():
p.set_defaults( pkg_dir = "",
operation_clean = False,
operation_make = False,
qt_identification = "Qt593mp",
qt_identification = "Qt510Xmp",
dmg_serial = "1",
checkusage = False )