From dc1d368b4215862d4e1c6bdf338d5f8971167d3f Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sat, 1 Aug 2009 10:32:10 +0000 Subject: [PATCH] Supress warning message when target does not exist. [SVN r55333] --- v2/tools/symlink.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/tools/symlink.jam b/v2/tools/symlink.jam index bdfcb546a..b33e8260c 100644 --- a/v2/tools/symlink.jam +++ b/v2/tools/symlink.jam @@ -133,7 +133,7 @@ actions ln-UNIX actions ln-NT { echo "NT symlinks not supported yet, making copy" - del /f /q "$(<)" 2$(NULL_OUT) $(NULL_OUT) + del /f /q "$(<)" 2>nul >nul copy "$(>)" "$(<)" $(NULL_OUT) }