diff options
author | P. J. McDermott <pehjota> | 2013-03-28 12:34:31 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-03-28 12:34:31 (EDT) |
commit | 7a8d94de7314ed2c637eb6624305b7641e890eef (patch) | |
tree | b5ba71f3981737e620da786719ffb51a611791cd /dev/packaging/tutorials | |
parent | c6bcc9302bfe817bbb111b0e492ffa95c61f12de (diff) |
dev/packaging/tutorials/basic: Format make(1).
Diffstat (limited to 'dev/packaging/tutorials')
-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: |