summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2021-08-02 20:13:21 +0100
committerJohn-Mark Bell <jmb@netsurf-browser.org>2021-08-02 20:13:21 +0100
commit29ca302e4f395a18568e65d03dbc60914590be6b (patch)
treeee0fb8fa32a7f6812d2f0e91317aeeb545386f7e /src/Makefile
parent5bb88a810c485b382b501098122806bda13dc7c0 (diff)
downloadttf2f-29ca302e4f395a18568e65d03dbc60914590be6b.tar.gz
ttf2f-29ca302e4f395a18568e65d03dbc60914590be6b.tar.bz2
Fix RISC OS build
5bb88a81 got BUILD and HOST confused, so we were not linking the RISC OS binary statically.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index a9e9e5e..0265d3f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -4,7 +4,7 @@ DIR_SOURCES := encoding.c ft.c glyphs.c intmetrics.c outlines.c utils.c
ifeq ($(FRONTEND),cli)
DIR_SOURCES := $(DIR_SOURCES) cli.c
else
- ifeq ($(BUILD),arm-unknown-riscos)
+ ifeq ($(HOST),arm-unknown-riscos)
DIR_SOURCES := $(DIR_SOURCES) toolbox.c
endif
endif