Skip to content

Commit

Permalink
makefiles: only add src as a source folder
Browse files Browse the repository at this point in the history
Fixes #6060
  • Loading branch information
arturoc committed Jul 30, 2018
1 parent 668c62f commit ce77dae
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -273,7 +273,7 @@ OF_PROJECT_EXCLUSIONS += $(PROJECT_ROOT)/build/%

# create a list of all dirs in the project root that might be valid project
# source directories
ALL_OF_PROJECT_SOURCE_PATHS = $(shell $(FIND) $(PROJECT_ROOT) -mindepth 1 \
ALL_OF_PROJECT_SOURCE_PATHS = $(shell $(FIND) $(PROJECT_ROOT)/src \
-type d \
-not -path "./bin/*" \
-not -path "./obj/*" \
Expand Down

0 comments on commit ce77dae

Please sign in to comment.