diff options
| author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2024-03-30 18:56:12 +0100 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2024-04-19 04:50:40 -0700 |
| commit | 364c5c906e20e8c3a5dc93309281b52ed92dc351 (patch) | |
| tree | df56d514ec4c8871de3f6fa4fbb18545696345f9 /documentation/kernel-dev/common.rst | |
| parent | 9f0fd0ad0ea38742c69d452030b454b9f3373d91 (diff) | |
| download | poky-364c5c906e20e8c3a5dc93309281b52ed92dc351.tar.gz | |
manuals: remove tab characters
As reported by "make sphinx-lint"
Tabs are even removed in Makefile examples,
as Sphinx turns them to spaces anyway in the generated output.
(From yocto-docs rev: fd1423141e7458ba557db465c171b0b4e9063987)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reviewed-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation/kernel-dev/common.rst')
| -rw-r--r-- | documentation/kernel-dev/common.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst index 3f9d8d48e4..815695652b 100644 --- a/documentation/kernel-dev/common.rst +++ b/documentation/kernel-dev/common.rst | |||
| @@ -1749,10 +1749,10 @@ looks much like the one provided with the ``hello-mod`` template:: | |||
| 1749 | SRC := $(shell pwd) | 1749 | SRC := $(shell pwd) |
| 1750 | 1750 | ||
| 1751 | all: | 1751 | all: |
| 1752 | $(MAKE) -C $(KERNEL_SRC) M=$(SRC) | 1752 | $(MAKE) -C $(KERNEL_SRC) M=$(SRC) |
| 1753 | 1753 | ||
| 1754 | modules_install: | 1754 | modules_install: |
| 1755 | $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install | 1755 | $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install |
| 1756 | ... | 1756 | ... |
| 1757 | 1757 | ||
| 1758 | The important point to note here is the :term:`KERNEL_SRC` variable. The | 1758 | The important point to note here is the :term:`KERNEL_SRC` variable. The |
