Remove extra bracket on srctree conditional

Stops make complaining on in-tree compile:
drivers/net/wireless/rtl8821ce/Makefile:24: extraneous text after 'ifeq' directive
pull/102/head
Harry Youd 2019-11-15 14:46:35 +00:00
parent 9d8699f718
commit f61dc4ca82
1 changed files with 1 additions and 1 deletions

View File

@ -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