Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit ec873b44 authored by yixiang.wu's avatar yixiang.wu Committed by Michael Bestas
Browse files

[1 of 1][10277821]resolve the issue that user build can't compile

 ###%%%comment:[1 of 1]resolve the issue that user build can't compile
 ###%%%bug number:10277821
 ###%%%product name:n10
 ###%%%root cause:Specification
 ###%%%Bug category:T2M
 ###%%%regression response:---
 ###%%%regression comments:
 ###%%%Module_Impact:tp
 ###%%%Test_Suggestion:you can compile the user build version
 ###%%%Solution:resolve the issue that user build can't compile
 ###%%%Test_Report:you can compile the user build version
 ###%%%VAL Can Test:No

Change-Id: I7e6b7694ade2b473a9db76f11bd258e98d938f1c
parent c28a3494
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -476,6 +476,10 @@ export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \
export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
			 --exclude CVS --exclude .pc --exclude .hg --exclude .git

# We ignore *.i file for tp module when run clean cmd
export TP_FIND_IGNORE := \( -path "./drivers/input/touchscreen/focaltech_touch_n10" \) \
			  -prune -o

# ===========================================================================
# Rules shared between *config targets and build targets

@@ -1729,7 +1733,7 @@ endif # KBUILD_EXTMOD
clean: $(clean-dirs)
	$(call cmd,rmdirs)
	$(call cmd,rmfiles)
	@find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
	@find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) $(TP_FIND_IGNORE) \
		\( -name '*.[aios]' -o -name '*.ko' -o -name '.*.cmd' \
		-o -name '*.ko.*' -o -name '*.dtb' -o -name '*.dtb.S' \
		-o -name '*.dwo' -o -name '*.lst' \