Fixes: lp:1652353 (pspice netlist export: library include path is always empty)

https://bugs.launchpad.net/kicad/+bug/1652353
This commit is contained in:
jean-pierre charras 2016-12-30 15:32:45 +01:00
parent a9fbedfb12
commit 655f54bea5
1 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,8 @@ bool NETLIST_EXPORTER_PSPICE::Format( OUTPUTFORMATTER* aFormatter, unsigned aCtl
full_path = lib;
}
}
else
full_path = lib; // just use the unaltered path
aFormatter->Print( 0, ".include \"%s\"\n", (const char*) full_path.c_str() );
}