From f61dc4ca82aaec116cd37df6694afa8d45533b26 Mon Sep 17 00:00:00 2001 From: Harry Youd Date: Fri, 15 Nov 2019 14:46:35 +0000 Subject: [PATCH] Remove extra bracket on srctree conditional Stops make complaining on in-tree compile: drivers/net/wireless/rtl8821ce/Makefile:24: extraneous text after 'ifeq' directive --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5b0a7a9..5b5dc9a 100755 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ ifeq ($(GCC_VER_49),1) EXTRA_CFLAGS += -Wno-date-time # Fix compile error && warning on gcc 4.9 and later endif -ifeq (,$(srctree))) +ifeq (,$(srctree)) # make processing export TopDIR ?= $(shell pwd) else