From 041d0d2c68260e5056196af8136d8019e4912e03 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 13 May 2017 12:36:25 -0600 Subject: [PATCH] apps/platform: Fix an error in dependency generation introduced with last changes --- platform/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/Makefile b/platform/Makefile index 15edd09c9..8f562f779 100644 --- a/platform/Makefile +++ b/platform/Makefile @@ -137,7 +137,7 @@ context: dirlinks # Dependencies .depend: Makefile $(SRCS) $(PLATFORMDIR) - $(Q) $(MKDEP) --obj-path bin --obj-suffix $(OBJEXT) --dep-path $(PLATFORMDIR) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep + $(Q) $(MKDEP) --obj-path bin --obj-suffix $(OBJEXT) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep $(Q) touch $@ depend: .depend