Ignore:
Timestamp:
Dec 8, 2006, 11:31:16 PM (19 years ago)
Author:
bird
Message:

tools location is being cleaned up.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/MINGW32.kmk

    r667 r692  
    2929# Tool Specific Properties
    3030ifndef PATH_TOOL_MINGW32
    31  PATH_TOOL_MINGW32 := $(sort $(wildcard $(PATH_DEVTOOLS_BLD)/mingw32/v*.*))
     31 PATH_TOOL_MINGW32 := $(wildcard $(PATH_DEVTOOLS_BLD)/mingw32/v*.*)
    3232 ifeq ($(PATH_TOOL_MINGW32),)
    33   PATH_TOOL_MINGW32 := $(sort $(wildcard $(PATH_DEVTOOLS)/x86.win/mingw32/v*.*))
     33  PATH_TOOL_MINGW32 := $(wildcard $(PATH_DEVTOOLS)/win.x86/mingw32/v*.*)
    3434 endif
    3535 ifeq ($(PATH_TOOL_MINGW32),)
    36   PATH_TOOL_MINGW32 := $(sort $(wildcard $(PATH_DEVTOOLS)/x86.win32/mingw32/v*.*))
     36  PATH_TOOL_MINGW32 := $(wildcard $(PATH_DEVTOOLS)/x86.win32/mingw32/v*.*)
    3737 endif
    3838 ifneq ($(PATH_TOOL_MINGW32),)
    39   PATH_TOOL_MINGW32 := $(call lastword,$(PATH_TOOL_MINGW32))
     39  PATH_TOOL_MINGW32 := $(lastword $(sort $(PATH_TOOL_MINGW32)))
    4040 endif
    4141else
     
    5454 ifneq ($(BUILD_PLATFORM),win)
    5555  # we're cross compiling either using an emulator (wine/odin) or a cross compiler.
    56   ifneq ($(PATH_TOOL_MINGW32),$(subst /x86.win,,$(PATH_TOOL_MINGW32)))
     56  ifneq ($(PATH_TOOL_MINGW32),$(subst /win.x86,,$(subst /x86.win,,$(PATH_TOOL_MINGW32))))
    5757   TOOL_MINGW32_PREFIX := $(EXEC_X86_WIN32) $(TOOL_MINGW32_PREFIX)
    5858   TOOL_MINGW32_HOSTSUFF_EXE := .exe
Note: See TracChangeset for help on using the changeset viewer.