2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Junctions should be removed with rmdir, not del. This fixes a bug that causes -a --reconfigure to decide that junctions are not supported.

This commit is contained in:
Steven Watanabe
2016-03-01 13:15:19 -07:00
parent e2d07ad6db
commit 6ece5736bc

View File

@@ -488,7 +488,7 @@ if [ os.name ] = NT
actions junction
{
if exist "$(<)" del "$(<)"
if exist "$(<)" rmdir "$(<)"
mklink /J "$(<)" "$(>)"
}