From 95081550fd5b8808204748b53682259fbd7d0b7f Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 9 Feb 2010 19:08:17 +0100 Subject: [PATCH] makefiles: Disable winetest when tests are disabled. --- configure | 2 ++ configure.ac | 3 +++ 2 files changed, 5 insertions(+) diff --git a/configure b/configure index bc61d076d3f..0d595883101 100755 --- a/configure +++ b/configure @@ -4111,6 +4111,8 @@ esac enable_win16=${enable_win16:-no} +enable_winetest=${enable_winetest:-$enable_tests} + if test -n "$with_wine64" then if test "x$enable_win64" = "xyes" diff --git a/configure.ac b/configure.ac index b0e6a48c13b..6276241c0c7 100644 --- a/configure.ac +++ b/configure.ac @@ -170,6 +170,9 @@ esac dnl enable_win16 defaults to yes on x86, to no on other CPUs enable_win16=${enable_win16:-no} +dnl Disable winetest too if tests are disabled +enable_winetest=${enable_winetest:-$enable_tests} + dnl Some special cases for the wow64 build if test -n "$with_wine64" then