From 8f3ee28057f01a44eeb89d13dbba7a604029ca96 Mon Sep 17 00:00:00 2001 From: Kai Germaschewski Date: Sun, 19 May 2002 00:42:08 -0500 Subject: [PATCH] kbuild: Use $(CURDIR) Not a big change, but make provides the current directory, so why not use it ;-) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d321cf1ec84b..13831146093d 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ KERNELPATH=kernel-$(shell echo $(KERNELRELEASE) | sed -e "s/-//g") CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ else if [ -x /bin/bash ]; then echo /bin/bash; \ else echo sh; fi ; fi) -TOPDIR := $(shell /bin/pwd) +TOPDIR := $(CURDIR) HPATH = $(TOPDIR)/include FINDHPATH = $(HPATH)/asm $(HPATH)/linux $(HPATH)/scsi $(HPATH)/net -- 2.39.5