aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRaphael Cohn <raphael.cohn@stormmq.com>2015-04-07 16:06:43 +0100
committerRaphael Cohn <raphael.cohn@stormmq.com>2015-04-07 16:06:43 +0100
commitaa6946b92c18be460fe9ecef312ced8e88ca8d4e (patch)
tree1b5a2e079b028289bed7566f41de38e96fd7212f /Makefile
parent50fc86a4470ce8b28207c13b2c2cbafe07faa7a0 (diff)
downloadtinycc-aa6946b92c18be460fe9ecef312ced8e88ca8d4e.tar.gz
tinycc-aa6946b92c18be460fe9ecef312ced8e88ca8d4e.tar.bz2
Fix to test for HOST_OS not TARGETOS
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a78c495..ce486cc 100644
--- a/Makefile
+++ b/Makefile
@@ -312,7 +312,7 @@ ifdef CONFIG_CROSS
mkdir -p "$(tccdir)/win32/lib/64"
mkdir -p "$(tccdir)/i386"
mkdir -p "$(tccdir)/x86-64"
-ifneq ($(TARGETOS),Darwin)
+ifneq ($(HOST_OS),Darwin)
mkdir -p "$(tccdir)/arm64"
$(INSTALL) -m644 lib/arm64/libtcc1.a "$(tccdir)/arm64"
endif