Commit 776618fe authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

makedep: Avoid building test resources if winetest is disabled.

parent bc4624c7
......@@ -3283,7 +3283,7 @@ static void output_test_module( struct makefile *make )
output_filename( tools_path( make, "winegcc" ));
output( "\n" );
if (!make->disabled)
if (!make->disabled && !strarray_exists( &disabled_dirs, "programs/winetest" ))
output( "all: %s/%s\n", top_obj_dir_path( make, "programs/winetest" ), testres );
output( "%s/%s: %s%s\n", top_obj_dir_path( make, "programs/winetest" ), testres,
obj_dir_path( make, stripped ), dll_ext );
......
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