diff options
author | Tom Levy <tomlevy93@gmail.com> | 2019-03-21 02:37:56 +0100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-03-25 16:58:22 +0100 |
commit | 4318f9bb736c9874204b5c94c825f0c57bed78d7 (patch) | |
tree | e1b42eeb5d598f41c17309c5a5e20907258298c4 /Documentation/translations/ja_JP | |
parent | Documentation: fix core_pattern max length (diff) | |
download | linux-4318f9bb736c9874204b5c94c825f0c57bed78d7.tar.xz linux-4318f9bb736c9874204b5c94c825f0c57bed78d7.zip |
docs: remove spaces from shell variable assignment
The instructions for generating patches are given as shell commands
with variables as placeholders. They use the syntax "SRCTREE= linux",
which is wrong for the Bourne shell family (it runs the command
"linux" with the variable "SRCTREE" set to the empty string).
Remove the spaces to avoid confusion. This breaks the pretty alignment
but helps new contributors who try to run the commands as written.
Signed-off-by: Tom Levy <tomlevy93@gmail.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/translations/ja_JP')
-rw-r--r-- | Documentation/translations/ja_JP/SubmittingPatches | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/translations/ja_JP/SubmittingPatches b/Documentation/translations/ja_JP/SubmittingPatches index 02139656463e..ad979c3c06a6 100644 --- a/Documentation/translations/ja_JP/SubmittingPatches +++ b/Documentation/translations/ja_JP/SubmittingPatches @@ -58,8 +58,8 @@ Linux カーネルに対する全ての変更は diff(1) コマンドによる 1個のファイルについてのパッチを作成するためには、ほとんどの場合、 以下の作業を行えば十分です。 - SRCTREE= linux-2.6 - MYFILE= drivers/net/mydriver.c + SRCTREE=linux-2.6 + MYFILE=drivers/net/mydriver.c cd $SRCTREE cp $MYFILE $MYFILE.orig @@ -71,7 +71,7 @@ Linux カーネルに対する全ての変更は diff(1) コマンドによる なわち変更を加えてない Linux カーネルを展開し、自分の Linux カーネル ソースとの差分を生成しないといけません。例えば、 - MYSRC= /devel/linux-2.6 + MYSRC=/devel/linux-2.6 tar xvfz linux-2.6.12.tar.gz mv linux-2.6.12 linux-2.6.12-vanilla |