This is an automated email from the ASF dual-hosted git repository.
davids5 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 8efec13 drivers/motor - Fix CFLAGS path
8efec13 is described below
commit 8efec13ab077bd82269ec3bc2193ba01642fdff9
Author: Nathan Hartman <[email protected]>
AuthorDate: Mon May 3 13:00:18 2021 -0400
drivers/motor - Fix CFLAGS path
* drivers/motor/Make.defs b/drivers/motor/Make.defs:
Fix typo in MOTOR_CFLAGS path (motr -> motor)
---
drivers/motor/Make.defs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/motor/Make.defs b/drivers/motor/Make.defs
index 5a05409..d369148 100644
--- a/drivers/motor/Make.defs
+++ b/drivers/motor/Make.defs
@@ -28,7 +28,7 @@ endif
MOTOR_DEPPATH := --dep-path motor
MOTOR_VPATH := :motor
-MOTOR_CFLAGS := ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)motr}
+MOTOR_CFLAGS := ${shell $(INCDIR) "$(CC)"
$(TOPDIR)$(DELIM)drivers$(DELIM)motor}
DEPPATH += $(MOTOR_DEPPATH)
VPATH += $(MOTOR_VPATH)