Skip to content

Commit 96f46a8

Browse files
committed
SConstruct : Fix slash error on Windows
1 parent 996cbc1 commit 96f46a8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
10.4.x.x (relative to 10.4.2.1)
2+
========
3+
4+
IECoreUSD : Fixed error in `pluginfo.json` preventing USD on Windows from loading `IECoreUSD.dll`.
5+
16
10.4.2.1 (relative to 10.4.2.0)
27
========
38

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3124,7 +3124,7 @@ if doConfigure :
31243124
"!IECOREUSD_RELATIVE_LIB_FOLDER!" : os.path.relpath(
31253125
usdLibraryInstall[0].get_path(),
31263126
os.path.dirname( usdEnv.subst( "$INSTALL_USD_RESOURCE_DIR/IECoreUSD/plugInfo.json" ) )
3127-
).format( "\\", "\\\\" ),
3127+
).replace( "\\", "\\\\" ),
31283128
}
31293129
)
31303130
usdEnv.AddPostAction( "$INSTALL_USD_RESOURCE_DIR/IECoreUSD", lambda target, source, env : makeSymLinks( usdEnv, usdEnv["INSTALL_USD_RESOURCE_DIR"] ) )

0 commit comments

Comments
 (0)