From d0ae8b7806a63b2c24f52a1a26eafeb10f34eaad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Wed, 3 Oct 2007 11:24:56 +0000 Subject: [PATCH] Try to fix Linux build svn path=/trunk/; revision=29372 --- reactos/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reactos/Makefile b/reactos/Makefile index 96c9f06003b..89ac3ddbb9d 100644 --- a/reactos/Makefile +++ b/reactos/Makefile @@ -277,7 +277,11 @@ host_objcopy = $(Q)objcopy ifneq ($(ROS_PREFIX),) PREFIX_ := $(ROS_PREFIX)- else - PREFIX_ := + ifeq ($(HOST),mingw32-linux) + PREFIX_ := mingw32- + else + PREFIX_ := + endif endif ifeq ($(TARGET_CC),) TARGET_CC = $(PREFIX_)gcc