From bdf13ade7a79f220b60b64090610cbdcf68b9998 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sun, 11 Dec 2022 20:43:10 +0100 Subject: [PATCH] Fix a compil issue on linux, round 2 --- eeschema/sim/ngspice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sim/ngspice.cpp b/eeschema/sim/ngspice.cpp index f9b1665905..5499c66950 100644 --- a/eeschema/sim/ngspice.cpp +++ b/eeschema/sim/ngspice.cpp @@ -456,7 +456,7 @@ void NGSPICE::init_dll() "/../../../../../Contents/PlugIns/sim" }; #else // Unix systems - const std::vector dllPaths = { "/usr/local/lib" }; + const std::vector dllPaths = { "/usr/local/lib" }; #endif #if defined(__WINDOWS__) || (__WXMAC__)