mymake error: == not =

This commit is contained in:
Zeno Rogue 2022-01-17 22:34:27 +01:00
parent 549e57b3d1
commit f366e4fbad
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ int main(int argc, char **argv) {
else obj_dir += c;
linker += " " + s;
}
else if(s = "-o") {
else if(s == "-o") {
exec_name = argv[i+1];
i++;
}