From 6144522ab3cca370bbfc174eb6174a7587897f1e Mon Sep 17 00:00:00 2001 From: Ben Brewer Date: Tue, 13 Nov 2012 11:16:42 +0000 Subject: Attempt to make Make do what I actually want it to --- generate/unix/Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate/unix/Makefile.common b/generate/unix/Makefile.common index bd8f371ae..e24f8964e 100644 --- a/generate/unix/Makefile.common +++ b/generate/unix/Makefile.common @@ -7,7 +7,7 @@ # string will be treated as a 64-bit OS. Otherwise, the default is 32-bit. # HARDWARE_NAME := $(shell uname -m) -BITS = $$(if $$(uname -m | grep -q 64); then echo 64; else echo 32; fi) +BITS = $(shell if `uname -m | grep -q 64); then echo 64; else echo 32; fi) # # Main rule will only generate versions that are appropriate for the running -- cgit v1.2.1