@@ -2096,10 +2096,10 @@ def InstallUSD(context, force, buildArgs):
2096
2096
subgroup = group .add_mutually_exclusive_group ()
2097
2097
subgroup .add_argument ("--zlib" , dest = "build_zlib" ,
2098
2098
action = "store_true" , default = True ,
2099
- help = "Install zlib on behalf of dependencies" )
2099
+ help = "Install zlib on behalf of dependencies (default) " )
2100
2100
subgroup .add_argument ("--no-zlib" , dest = "build_zlib" ,
2101
2101
action = "store_false" ,
2102
- help = "Do not install zlib for dependencies (default) " )
2102
+ help = "Do not install zlib for dependencies" )
2103
2103
2104
2104
group = parser .add_argument_group (title = "Imaging Plugin Options" )
2105
2105
subgroup = group .add_mutually_exclusive_group ()
@@ -2412,18 +2412,18 @@ def ForceBuildDependency(self, dep):
2412
2412
2413
2413
if context .buildImaging :
2414
2414
if context .enablePtex :
2415
- requiredDependencies += [PTEX , ZLIB ]
2415
+ requiredDependencies += [ZLIB , PTEX ]
2416
2416
2417
2417
requiredDependencies += [OPENSUBDIV ]
2418
2418
2419
2419
if context .enableOpenVDB :
2420
- requiredDependencies += [BLOSC , BOOST , OPENEXR , OPENVDB , TBB , ZLIB ]
2420
+ requiredDependencies += [ZLIB , TBB , BLOSC , BOOST , OPENEXR , OPENVDB ]
2421
2421
2422
2422
if context .buildOIIO :
2423
- requiredDependencies += [BOOST , JPEG , TIFF , PNG , OPENEXR , OPENIMAGEIO , ZLIB ]
2423
+ requiredDependencies += [ZLIB , BOOST , JPEG , TIFF , PNG , OPENEXR , OPENIMAGEIO ]
2424
2424
2425
2425
if context .buildOCIO :
2426
- requiredDependencies += [OPENCOLORIO , ZLIB ]
2426
+ requiredDependencies += [ZLIB , OPENCOLORIO ]
2427
2427
2428
2428
if context .buildEmbree :
2429
2429
requiredDependencies += [TBB , EMBREE ]
0 commit comments