# HG changeset patch # User John W. Eaton # Date 1369947649 14400 # Node ID 23989e9403a3ca4c635abdced2697fb8422be4cb # Parent aa4a0ace032d9b45ec65dac80505a0fea42749c5 use $(shell ...) to execute config.guess diff -r aa4a0ace032d -r 23989e9403a3 Makefile --- a/Makefile Thu May 30 14:57:20 2013 -0400 +++ b/Makefile Thu May 30 17:00:49 2013 -0400 @@ -19,7 +19,7 @@ # Should match what config.guess prints for your system. # If cross compiling, you must set it manually. ifeq ($(MXE_NATIVE_BUILD),yes) - TARGET := `tools/config.guess` + TARGET := $(shell tools/config.guess) else TARGET := i686-pc-mingw32 endif