From 0083ce1bdc4e4369c507638336ddb2b0e22295a1 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Tue, 19 Sep 2017 12:08:10 +0200 Subject: [PATCH] Disable enforced slash as the path separator in NETLIST_EXPORTER It causes issues with files that are stored on network resources and pointed to using the Windows UNC format. --- eeschema/netlist_exporters/netlist_exporter.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/eeschema/netlist_exporters/netlist_exporter.cpp b/eeschema/netlist_exporters/netlist_exporter.cpp index f3d3645840..50f1b1a37c 100644 --- a/eeschema/netlist_exporters/netlist_exporter.cpp +++ b/eeschema/netlist_exporters/netlist_exporter.cpp @@ -65,9 +65,6 @@ wxString NETLIST_EXPORTER::MakeCommandLine( const wxString& aFormatString, ret.Replace( wxT( "%I" ), in.GetFullPath().GetData(), true ); ret.Replace( wxT( "%O" ), out.GetFullPath().GetData(), true ); - // Use Unix like notation, which always works - ret.Replace( wxT( "\\" ), "/", true ); - return ret; }