From eb9a99fe4c9bc60b48b4e5e0e64adcf3c1d36596 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sun, 15 Nov 2020 17:03:40 +0100 Subject: [PATCH] Remove surplus / character in path to dot on Windows The delimiter is \ on Windows and it is already included in $(OutDir); --- cmd/dot/dot.vcxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/dot/dot.vcxproj b/cmd/dot/dot.vcxproj index 9975e9aca..9fccd7540 100644 --- a/cmd/dot/dot.vcxproj +++ b/cmd/dot/dot.vcxproj @@ -71,7 +71,7 @@ cgraph.lib;gvc.lib;%(AdditionalDependencies) - $(OutDir)/dot -c + $(OutDir)dot -c @@ -94,7 +94,7 @@ cgraph.lib;gvc.lib;%(AdditionalDependencies) - $(OutDir)/dot -c + $(OutDir)dot -c -- 2.40.0