diff Makefile @ 3009:23989e9403a3

use $(shell ...) to execute config.guess
author John W. Eaton <jwe@octave.org>
date Thu, 30 May 2013 17:00:49 -0400
parents dabfd7db980c
children 100e618349f7
line wrap: on
line diff
--- 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