summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Brewer <benbrewer@codethink.co.uk>2012-11-13 11:16:42 +0000
committerBen Brewer <benbrewer@codethink.co.uk>2012-11-13 11:16:42 +0000
commit6144522ab3cca370bbfc174eb6174a7587897f1e (patch)
tree477183b23c4ea45e010e688440c2504b0ff20df6
parentb811b0493faec23d3adce1dd8920e423a85c63fb (diff)
downloadacpica-6144522ab3cca370bbfc174eb6174a7587897f1e.tar.gz
Attempt to make Make do what I actually want it to
-rw-r--r--generate/unix/Makefile.common2
1 files changed, 1 insertions, 1 deletions
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