Commit e4fd5196 authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

cmd: Rename reference file from .out to .exp to avoid clash with gnu make builtin rule.

parent 8bc6ff9d
......@@ -190,7 +190,7 @@ static void run_from_file(char *file_name)
return;
}
sprintf(out_name, "%s.out", file_name);
sprintf(out_name, "%s.exp", file_name);
out_size = map_file(out_name, &out_data);
if(!out_size) {
ok(0, "Could not map file %s: %u\n", out_name, GetLastError());
......@@ -236,7 +236,7 @@ static BOOL WINAPI test_enum_proc(HMODULE module, LPCTSTR type, LPSTR name, LONG
if(!cmd_size)
return TRUE;
sprintf(res_name, "%s.out", name);
sprintf(res_name, "%s.exp", name);
out_size = load_resource(res_name, "TESTOUT", &out_data);
if(!out_size)
return TRUE;
......
......@@ -19,5 +19,5 @@
/* @makedep: test_builtins.cmd */
test_builtins.cmd TESTCMD "test_builtins.cmd"
/* @makedep: test_builtins.cmd.out */
test_builtins.cmd.out TESTOUT "test_builtins.cmd.out"
/* @makedep: test_builtins.cmd.exp */
test_builtins.cmd.exp TESTOUT "test_builtins.cmd.exp"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment