Signed-off-by: Nicolas Bouliane <nicboul@xxxxxxxxx> --- Documentation/kbuild/modules.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/kbuild/modules.rst b/Documentation/kbuild/modules.rst index a1f3eb7a43e2..44a18bccdd5a 100644 --- a/Documentation/kbuild/modules.rst +++ b/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.25.1