We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d1f6b9 commit 8cc7a13Copy full SHA for 8cc7a13
config/ie/buildAll
@@ -95,7 +95,12 @@ def installDocs() :
95
buildArgs = [ "INSTALL_PREFIX=/software" ]
96
buildArgs.extend( sysArgs )
97
98
- if subprocess.call( [ "scons", "installDoc" ] + buildArgs ) != 0 :
+ cmd = [ "scons", "installDoc" ]
99
+ print( " ".join( cmd + buildArgs ) )
100
+ if "DRYRUN=1" in sysArgs :
101
+ return
102
+
103
+ if subprocess.call( cmd + buildArgs ) != 0 :
104
105
raise RuntimeError("Error : scons installDoc " + str( " ".join( buildArgs ) ) )
106
0 commit comments