Merged with latest NSRT version.

This commit is contained in:
n-a-c-h
2006-02-24 00:48:12 +00:00
parent c8dda081af
commit 248613f346

View File

@@ -1439,10 +1439,10 @@ int main(size_t argc, const char **argv)
if (!ret_val && compile)
{
puts(COMPILE_OBJ("psrtemp.obj", "psrtemp.c"));
cout << COMPILE_OBJ("psrtemp.obj", "psrtemp.c") << "\n";
system(COMPILE_OBJ("psrtemp.obj", "psrtemp.c"));
remove("psrtemp.c");
printf("Renaming psrtemp.obj to %s\n", obj_file);
cout << "Renaming psrtemp.obj to " << obj_file << endl;
rename("psrtemp.obj", obj_file);
}