From 37a800722b7a4a876c024402a261fdf27a5596c3 Mon Sep 17 00:00:00 2001 From: Anirudh Swarankar Date: Sat, 9 Mar 2019 23:34:42 +0530 Subject: [PATCH] Update Makefile.1 --- .../docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile.1 b/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile.1 index fbd8a058..b59ac4f6 100644 --- a/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile.1 +++ b/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile.1 @@ -1,7 +1,7 @@ obj-m += hello-1.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