Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/propelleride/compilers/externalcompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ QString ExternalCompiler::build(QString filename,
QString basefile = infile;
basefile.chop(pattern_in.size());

QString outfile = basefile.append(pattern_out);
QString retfile = basefile.append(pattern_ret);
QString outfile = basefile;
QString retfile = basefile;

outfile += pattern_out;
retfile += pattern_ret;

QString exepath = getExecutablePath();

Expand Down