Skip to content

Commit 636e9b4

Browse files
committed
Rename install_folder to target_folder.
1 parent 583f1d0 commit 636e9b4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/compiler/target.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@
3131
class target_file
3232
{
3333
public:
34-
std::string install_folder;
34+
std::string target_folder;
3535
std::vector<std::string> slist;
3636
std::vector<std::string> ca65_args;
3737
std::string lib_name;
3838
std::string cfg_name;
3939
std::string bin_ext;
40-
target_file(std::string install_folder) : install_folder(install_folder) {}
40+
target_file(std::string target_folder) : target_folder(target_folder) {}
4141
void read_file(std::string fname);
4242
};
4343

@@ -61,7 +61,7 @@ void target_file::read_file(std::string fname)
6161
fname = os::add_extension(fname, ".tgt");
6262

6363
if(!os::path_absolute(fname))
64-
fname = os::full_path(install_folder, fname);
64+
fname = os::full_path(target_folder, fname);
6565

6666
std::ifstream f;
6767
f.open(fname);

0 commit comments

Comments
 (0)