aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCoywolf Qi Hunt <coywolf@greatcn.org>2004-08-16 01:41:02 +0200
committerSam Ravnborg <sam@mars.ravnborg.org>2004-08-16 01:41:02 +0200
commit25d0fd8fd5ac5e76a4fee04867737e944464729d (patch)
treec19d9462140af760e66fa53989ac2a0977a80e37 /Makefile
parenta91c4fb5dacdb98ee18122887378d1a74ec0d676 (diff)
downloadhistory-25d0fd8fd5ac5e76a4fee04867737e944464729d.tar.gz
kbuild: Remove wildcard on KBUILD_OUTPUT
This patch removes unnecessary wildcard on KBUILD_OUTPUT Signed-off-by: Coywolf Qi Hunt <coywolf@greatcn.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 191a6da7c8b665..13e501dd36f992 100644
--- a/Makefile
+++ b/Makefile
@@ -102,7 +102,7 @@ ifneq ($(KBUILD_OUTPUT),)
# check that the output directory actually exists
saved-output := $(KBUILD_OUTPUT)
KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
-$(if $(wildcard $(KBUILD_OUTPUT)),, \
+$(if $(KBUILD_OUTPUT),, \
$(error output directory "$(saved-output)" does not exist))
.PHONY: $(MAKECMDGOALS)