From ed83be771b41ba36a71373b1a1e17249570e4683 Mon Sep 17 00:00:00 2001 From: Anirudh Swarankar Date: Sat, 9 Mar 2019 23:34:22 +0530 Subject: [PATCH] Update Makefile --- .../docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile b/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile index f31fb3c4..dd1bfd7b 100644 --- a/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile +++ b/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile @@ -7,7 +7,7 @@ obj-m += startstop.o startstop-objs := start.o stop.o all: - make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules + make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules clean: - make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean + make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean