Skip to content

Commit

Permalink
Fix bug in build_usd.py causing boost installation to fail.
Browse files Browse the repository at this point in the history
This was due to the addition of a new argument to the
DownloadURL helper function in change 2160819.

(Internal change: 2161285)
  • Loading branch information
sunyab authored and pixar-oss committed Apr 22, 2021
1 parent dbbaa9f commit d0f8608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_scripts/build_usd.py
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ def InstallBoost_Helper(context, force, buildArgs):
dontExtract = ["*/doc/*", "*/libs/*/doc/*"]

with CurrentWorkingDirectory(DownloadURL(BOOST_URL, context, force,
dontExtract)):
dontExtract=dontExtract)):
bootstrap = "bootstrap.bat" if Windows() else "./bootstrap.sh"
Run('{bootstrap} --prefix="{instDir}"'
.format(bootstrap=bootstrap, instDir=context.instDir))
Expand Down

0 comments on commit d0f8608

Please sign in to comment.