diff options
author | David Tardon <dtardon@redhat.com> | 2012-02-15 06:40:24 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-02-17 15:53:55 +0100 |
commit | 398721c280bf53ab2f1e698cd2bf869486229d50 (patch) | |
tree | 31a70cedcb59f9fe21761b20b6ea4c3c8cc99048 /external | |
parent | 5bb51521233d75cfc90492746eb4f08f47616acc (diff) |
use configured HOST_PLATFORM instread of hardcoded triplet
Diffstat (limited to 'external')
-rw-r--r-- | external/mingw-dlls/makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/external/mingw-dlls/makefile.mk b/external/mingw-dlls/makefile.mk index 5635a57ef778..e2e51a0b5697 100644 --- a/external/mingw-dlls/makefile.mk +++ b/external/mingw-dlls/makefile.mk @@ -54,8 +54,8 @@ MINGW_DLLS+=$(MINGW_GXXDLL) # Guesstimate where the DLLs can be POTENTIAL_MINGW_RUNTIME_BINDIRS = \ - $(COMPATH)/i686-w64-mingw32/sys-root/mingw/bin \ - /usr/i686-w64-mingw32/sys-root/mingw/bin \ + $(COMPATH)/$(HOST_PLATFORM)/sys-root/mingw/bin \ + /usr/$(HOST_PLATFORM)/sys-root/mingw/bin \ all: @for DLL in $(MINGW_DLLS) ; do \ |