changeset 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 aa4a0ace032d
children 8ac67219c241
files Makefile
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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