aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Thelen <gthelen@google.com>2011-03-10 11:32:15 -0800
committermaximilian attems <max@stro.at>2011-03-29 15:59:39 +0200
commit58af2fea5a664c9f45da611aa9183c88cee5d5b1 (patch)
tree21c27b8e9d76f6d11e2b69c496fbce2f6fa2e706
parentbd6a9d0855c20334d6b8c5446f8554e1fe17ac9b (diff)
downloadklibc-58af2fea5a664c9f45da611aa9183c88cee5d5b1.tar.gz
[klibc] Makefile: Remove .config directory dependency
Previously klibc $(objtree)/.config depended on the kernel output directory. This would cause 'defconfig has changed, please remove or edit .config' build errors if $(KLIBCKERNELOBJ) directory was modified. This directory dependency is a false dependency that does not indicate that the target, $(objtree)/.config, needs to be regenerated. Signed-off-by: Greg Thelen <gthelen@google.com> Signed-off-by: maximilian attems <max@stro.at>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8e4dbb04355bf..d2cd57769dec9 100644
--- a/Makefile
+++ b/Makefile
@@ -91,7 +91,7 @@ klibc := -f $(srctree)/scripts/Kbuild.klibc obj
.PHONY: all klcc klibc
all: klcc klibc
-$(objtree)/.config: $(srctree)/defconfig $(KLIBCKERNELOBJ)
+$(objtree)/.config: $(srctree)/defconfig
@echo "defconfig has changed, please remove or edit .config"
@false