Fixed error in setting Windows extension on executable file

This commit is contained in:
Cirilo Bernardo 2016-09-21 10:18:16 +10:00 committed by Wayne Stambaugh
parent 88cdb8bbbe
commit ba65c39b40
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ PCB_EDIT_FRAME::PCB_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
wxFileName appK2S( strK2S, "kicad2step" );
#ifdef _WIN32
appK2S.SetExt( ".exe" );
appK2S.SetExt( "exe" );
#endif
if( !appK2S.FileExists() )