Browse Source

Remove extra bracket on srctree conditional

Stops make complaining on in-tree compile:
drivers/net/wireless/rtl8821ce/Makefile:24: extraneous text after 'ifeq' directive
Harry Youd 6 năm trước cách đây
mục cha
commit
f61dc4ca82
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Makefile

+ 1 - 1
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