From 083fb3cac3cf6d425575cf87e6a55a52ca45f274 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Mon, 23 Jan 2017 11:20:08 +0000 Subject: [PATCH] Makefile: Use the override keyword when implicitly disabling Polymer and libvpx when USE_OPENGL=0. git-svn-id: https://svn.eduke32.com/eduke32@6024 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/Makefile.common | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polymer/eduke32/Makefile.common b/polymer/eduke32/Makefile.common index 1ee135636..c36e67f6b 100644 --- a/polymer/eduke32/Makefile.common +++ b/polymer/eduke32/Makefile.common @@ -198,8 +198,8 @@ USE_LUAJIT_2_1 ?= 0 USE_ASM64 ?= 0 ifeq (0,$(USE_OPENGL)) - POLYMER = 0 - USE_LIBVPX = 0 + override POLYMER = 0 + override USE_LIBVPX = 0 endif # Debugging/Build options