Skip to content

Commit

Permalink
Remove extra bracket on srctree conditional
Browse files Browse the repository at this point in the history
Stops make complaining on in-tree compile:
drivers/net/wireless/rtl8821ce/Makefile:24: extraneous text after 'ifeq' directive
  • Loading branch information
harryyoud committed Nov 15, 2019
1 parent 9d8699f commit f61dc4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f61dc4c

Please sign in to comment.