diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-11-29 16:09:15 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-11-29 16:09:15 +0100 |
commit | 60b0f4556fb94cbd6d9bac083f561067a437d98e (patch) | |
tree | d368c49e9b6f3d9abb97b13164e13ee4cb8998c7 /docs | |
parent | b895ea4a408bd2fd79468f0b5a6e0b71a7e10402 (diff) |
doc: Improve formatting
Change-Id: Id252624a59fffe789b93e978ef60eec2fc659055
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev_guide/5_autobuild.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/dev_guide/5_autobuild.md b/docs/dev_guide/5_autobuild.md index f6788fc..6ff93df 100644 --- a/docs/dev_guide/5_autobuild.md +++ b/docs/dev_guide/5_autobuild.md @@ -19,14 +19,18 @@ This script could be written in one of the following languages: * Bash * Python -The script will be executed directly after a chmod() on it (this implies that the caller should make the script executable before calling it: caller could be aglwgt.bbclass, a jenkins job, a 'real' developer ...) +The script will be executed directly after a chmod() on it (this implies that the +caller should make the script executable before calling it: caller could be +aglwgt.bbclass, a jenkins job, a 'real' developer ...) An appropriate shebang is required to make the script callable directly: * '#!/usr/bin/make -f' for Makefile format, * '#/usr/bin/bash' for Bash * etc. -The calling convention is close to the one from make, in particular to pass arguments through env variables. This is also easy for bash, as a simple eval on arguments will set environment variables correctly. +The calling convention is close to the one from make, in particular to pass +arguments through env variables. This is also easy for bash, as a simple eval +on arguments will set environment variables correctly. The generic call has the following format: ```bash |