diff options
Diffstat (limited to 'dev')
-rw-r--r-- | dev/packaging/tutorials/basic.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/packaging/tutorials/basic.mdwn b/dev/packaging/tutorials/basic.mdwn index 3cf354f..cb1e575 100644 --- a/dev/packaging/tutorials/basic.mdwn +++ b/dev/packaging/tutorials/basic.mdwn @@ -125,8 +125,8 @@ So begin writing `build` as follows: Note that, due to makefile syntax, the line after `nop:` must begin with a tab character. This line is called a "command line" in makefile syntax. The [`:` utility][posix-colon] is a "null utility" that returns an exit status of zero. -A command prefix of `@` tells make to not write the command to standard output -before executing it. +A command prefix of `@` tells **make**(1) to not write the command to standard +output before executing it. The `build` makefile must be executable, so set its file mode: |