mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

* kernel: bump to 4.14.169, 4.19.101 * uboot: update to latest * mediatek: bump to v4.19 * ath79: switch to wpad * Revert 'grub2: update to latest'
31 lines
905 B
Diff
31 lines
905 B
Diff
From 65e9a722b44bf28b98fe25b3b174761b47ec7dbd Mon Sep 17 00:00:00 2001
|
|
From: Biwen Li <biwen.li@nxp.com>
|
|
Date: Mon, 1 Apr 2019 13:41:55 +0800
|
|
Subject: [PATCH 2/3] plat/nxp/tools: fix a makefile bug that will use default
|
|
implicit rules
|
|
|
|
The patch fix a makefile bug that will use default implicit rules,
|
|
because do not have explicit rules for the destination files.
|
|
|
|
Signed-off-by: Biwen Li <biwen.li@nxp.com>
|
|
---
|
|
plat/nxp/tools/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/plat/nxp/tools/Makefile b/plat/nxp/tools/Makefile
|
|
index 2095294b..0082a0be 100644
|
|
--- a/plat/nxp/tools/Makefile
|
|
+++ b/plat/nxp/tools/Makefile
|
|
@@ -53,7 +53,7 @@ ${PROJECT_2}: ${OBJECTS_2} Makefile
|
|
@echo "Built $@ successfully"
|
|
@${ECHO_BLANK_LINE}
|
|
|
|
-%.o: %.c %.h Makefile
|
|
+%.o: %.c Makefile
|
|
@echo " CC $<"
|
|
${Q}${HOSTCC} -c ${CPPFLAGS} ${CFLAGS} ${INCLUDE_PATHS} $< -o $@
|
|
|
|
--
|
|
2.17.1
|
|
|