-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup: SQUASH me. FIX by just removing sys/posix/include
Includes for sys/posix/includes are the only new includes after removing NATIVEINCLUDES. And it breaks on mac because of types conflicts. I prefer replacing the complete specific case by just removing the breaking non required include directory that is pulled by an other module dependency.
- Loading branch information
Showing
6 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
MODULE = native-drivers | ||
|
||
# Use system posix include for native base modules | ||
INCLUDES := $(filter-out -I$(RIOTBASE)/sys/posix/include, $(INCLUDES)) | ||
|
||
include $(RIOTBASE)/Makefile.base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
MODULE := mtd_native | ||
|
||
# Use system posix include for native base modules | ||
INCLUDES := $(filter-out -I$(RIOTBASE)/sys/posix/include, $(INCLUDES)) | ||
|
||
include $(RIOTBASE)/Makefile.base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
# Use system posix include for native base modules | ||
INCLUDES := $(filter-out -I$(RIOTBASE)/sys/posix/include, $(INCLUDES)) | ||
|
||
include $(RIOTBASE)/Makefile.base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
# Use system posix include for native base modules | ||
INCLUDES := $(filter-out -I$(RIOTBASE)/sys/posix/include, $(INCLUDES)) | ||
|
||
include $(RIOTBASE)/Makefile.base |