We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba39265 + 4a6a033 commit ca36c05Copy full SHA for ca36c05
1 file changed
tools/build/src/tools/msvc.jam
@@ -1077,6 +1077,11 @@ local rule set-setup-command ( targets * : properties * )
1077
if ! [ on $(targets) return $(.SETUP) ]
1078
{
1079
local setup-script = [ on $(targets) return $(.SETUP-SCRIPT) ] ;
1080
+ # If no setup script was given, then we don't need to do anything.
1081
+ if ! $(setup-script)
1082
+ {
1083
+ return ;
1084
+ }
1085
local setup-options = [ on $(targets) return $(.SETUP-OPTIONS) ] ;
1086
local key = .setup-command-$(setup-script:E=)-$(setup-options:E=) ;
1087
if ! $($(key))
0 commit comments