aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/translations/ja_JP
diff options
context:
space:
mode:
authorTom Levy <tomlevy93@gmail.com>2019-03-21 14:37:56 +1300
committerJonathan Corbet <corbet@lwn.net>2019-03-25 09:58:22 -0600
commit4318f9bb736c9874204b5c94c825f0c57bed78d7 (patch)
treee1b42eeb5d598f41c17309c5a5e20907258298c4 /Documentation/translations/ja_JP
parentDocumentation: fix core_pattern max length (diff)
downloadlinux-dev-4318f9bb736c9874204b5c94c825f0c57bed78d7.tar.xz
linux-dev-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/SubmittingPatches6
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