From 6f687fbb6c93ae13246420b465843d975e988174 Mon Sep 17 00:00:00 2001 From: Francisco Javier Trujillo Mata Date: Tue, 15 Mar 2022 22:48:28 +0100 Subject: [PATCH] Fix typo in Makefile.common when comparing for HAVE_MATERIALUI, HAVE_XMB and HAVE_OZONE --- Makefile.common | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.common b/Makefile.common index 2c374a7113..021487ce6d 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1000,15 +1000,15 @@ ifeq ($(HW_CONTEXT_MENU_DRIVERS), 1) HAVE_RGUI = 1 endif - ifeq ($(HAVE_MATERIALUI),) + ifeq ($(HAVE_MATERIALUI), 1) HAVE_MATERIALUI = 1 endif - ifeq ($(HAVE_XMB),) + ifeq ($(HAVE_XMB), 1) HAVE_XMB = 1 endif - ifeq ($(HAVE_OZONE),) + ifeq ($(HAVE_OZONE), 1) HAVE_OZONE = 1 endif else