Merged in BWGaryP/ryzomcore/fix/bnp_make_call (pull request #134)

Update BnpMake arguements to output bnp files to target folder/name using -o switch.

--HG--
branch : develop
hg/feature/material-editor
Cédric OCHS 9 years ago
commit c2e444774e

@ -136,7 +136,7 @@ else:
needUpdateBnp = needUpdateDirNoSubdirFile(log, sourcePath, targetBnp)
if (needUpdateBnp):
printLog(log, "BNP " + targetBnp)
subprocess.call([ BnpMake, "/p", sourcePath, targetPath ] + package[1])
subprocess.call([ BnpMake, "-p", sourcePath, "-o", targetBnp ] + package[1][1:])
else:
printLog(log, "SKIP " + targetBnp)
printLog(log, "")

Loading…
Cancel
Save