From 1e94367eb2e5a8c99950616676404e44a0b7a0aa Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Wed, 14 Oct 2020 11:01:39 +0800 Subject: [PATCH] tools/Config.mk: Don't set HOSTEXEEXT to .exe for Ubuntu on Windows Signed-off-by: Xiang Xiao --- tools/Config.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/Config.mk b/tools/Config.mk index b6a36c2ee2..2edcf117b1 100644 --- a/tools/Config.mk +++ b/tools/Config.mk @@ -114,8 +114,10 @@ ifeq ($(HOSTOS),Cygwin) endif ifeq ($(CONFIG_HOST_WINDOWS),y) +ifneq ($(CONFIG_WINDOWS_UBUNTU),y) HOSTEXEEXT ?= .exe endif +endif # This define is passed as EXTRAFLAGS for kernel-mode builds. It is also passed # during PASS1 (but not PASS2) context and depend targets.