summaryrefslogtreecommitdiffstats
path: root/contrib/libvpx
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2019-04-16 11:31:29 -0600
committerJohn Stebbins <[email protected]>2019-04-17 07:27:17 -0600
commit046eb043aeebc31b922f632422b88107e840fd0b (patch)
treeda5955574f4a2029a29ceed0e10ae06625978037 /contrib/libvpx
parent8e52e9720f7c5d5b39897f43ae8c6bace5292c19 (diff)
make: finish correcting host/build semantics
Diffstat (limited to 'contrib/libvpx')
-rw-r--r--contrib/libvpx/module.defs16
1 files changed, 8 insertions, 8 deletions
diff --git a/contrib/libvpx/module.defs b/contrib/libvpx/module.defs
index d10b0d91b..f4f869f4b 100644
--- a/contrib/libvpx/module.defs
+++ b/contrib/libvpx/module.defs
@@ -17,29 +17,29 @@ LIBVPX.CONFIGURE.extra = \
--disable-docs \
--disable-unit-tests
-ifeq (1,$(BUILD.cross))
- LIBVPX.CONFIGURE.env.CROSS = CROSS="$(BUILD.spec)-"
+ifeq (1,$(HOST.cross))
+ LIBVPX.CONFIGURE.env.CROSS = CROSS="$(HOST.spec)-"
LIBVPX.CONFIGURE.args.build =
LIBVPX.CONFIGURE.extra += --enable-static-msvcrt
- ifeq (i686,$(BUILD.machine))
+ ifeq (i686,$(HOST.machine))
LIBVPX.CONFIGURE.extra += --target=x86-win32-gcc
- else ifeq (x86_64,$(BUILD.machine))
+ else ifeq (x86_64,$(HOST.machine))
LIBVPX.CONFIGURE.extra += --target=x86_64-win64-gcc
endif
endif
-ifeq (linux,$(BUILD.system))
- ifeq (x86_64,$(BUILD.machine))
+ifeq (linux,$(HOST.system))
+ ifeq (x86_64,$(HOST.machine))
LIBVPX.CONFIGURE.extra += --enable-pic
endif
endif
-ifeq (0-darwin,$(BUILD.cross)-$(BUILD.system))
+ifeq (0-darwin,$(HOST.cross)-$(BUILD.system))
ifeq (x86_64,$(BUILD.machine))
LIBVPX.CONFIGURE.extra += --target=x86_64-darwin14-gcc
endif
endif
-ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system))
+ifeq (1-mingw,$(HOST.cross)-$(HOST.system))
LIBVPX.CONFIGURE.extra += --disable-avx512
endif