Skip to content

Commit

Permalink
backward slashes in path
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l authored Mar 28, 2023
1 parent d3ea63d commit 478a545
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion library_builders.bat
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ exit /b 0
cmake --build build-zlib --target install --config Release
if errorlevel 1 exit 1

del "%BUILD_PREFIX:~1,-1%/zlib/bin/zlib.dll"
set "zlib_dll=%BUILD_PREFIX:~1,-1%/zlib/bin/zlib.dll"
set "zlib_dll=%zlib_dll:/=\%"
del "%zlib_dll%"
if errorlevel 1 exit 1

break > zlib-stamp
Expand Down

0 comments on commit 478a545

Please sign in to comment.