Typo '$$' generates make error when run, and was pasted twice more. Signed-off-by: Graeme Hayes <hayes.graeme.p@xxxxxxxxx> --- linux-kbuild/Documentation/kbuild/modules.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linux-kbuild/Documentation/kbuild/modules.rst b/linux-kbuild/Documentation/kbuild/modules.rst index 85ccc87..c7837a5 100644 --- a/linux-kbuild/Documentation/kbuild/modules.rst +++ b/linux-kbuild/Documentation/kbuild/modules.rst @@ -205,7 +205,7 @@ module 8123.ko, which is built from the following files:: KDIR ?= /lib/modules/`uname -r`/build default: - $(MAKE) -C $(KDIR) M=$$PWD + $(MAKE) -C $(KDIR) M=$PWD # Module specific targets genbin: @@ -239,7 +239,7 @@ module 8123.ko, which is built from the following files:: KDIR ?= /lib/modules/`uname -r`/build default: - $(MAKE) -C $(KDIR) M=$$PWD + $(MAKE) -C $(KDIR) M=$PWD # Module specific targets genbin: @@ -268,7 +268,7 @@ module 8123.ko, which is built from the following files:: KDIR ?= /lib/modules/`uname -r`/build default: - $(MAKE) -C $(KDIR) M=$$PWD + $(MAKE) -C $(KDIR) M=$PWD # Module specific targets genbin: -- 2.17.1