From: Volker Lendecke Date: Tue, 4 Sep 2018 08:26:18 +0000 (+0200) Subject: examples: Fix mingw64 detection X-Git-Tag: tdb-1.3.17~1867 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=80324ff6e2fab7adb30073fc48a0c512232f1443 examples: Fix mingw64 detection Signed-off-by: Volker Lendecke Reviewed-by: Andrew Bartlett --- diff --git a/examples/winexe/wscript b/examples/winexe/wscript index 3380b9794f6..8e42f014da5 100644 --- a/examples/winexe/wscript +++ b/examples/winexe/wscript @@ -16,6 +16,8 @@ def configure(conf): conf.DEFINE('HAVE_WINEXE_CC_WIN32', 1); break + found = False + for a in AR64: for t in TC: if conf.find_program(a + '-' + t + '-gcc', var='WINEXE_CC_WIN64'):