From 6ece5736bcf099b4ff9c65ae6ea65142fa67314f Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Tue, 1 Mar 2016 13:15:19 -0700 Subject: [PATCH] Junctions should be removed with rmdir, not del. This fixes a bug that causes -a --reconfigure to decide that junctions are not supported. --- src/tools/link.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/link.jam b/src/tools/link.jam index 944911b3e..50ec485c6 100644 --- a/src/tools/link.jam +++ b/src/tools/link.jam @@ -488,7 +488,7 @@ if [ os.name ] = NT actions junction { - if exist "$(<)" del "$(<)" + if exist "$(<)" rmdir "$(<)" mklink /J "$(<)" "$(>)" }