diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-09 12:02:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-14 14:38:28 +0000 |
commit | 68b7f18edd6b487f5d303ffda46d24fd2a4f3a2f (patch) | |
tree | 39fece133b2538194ce63339f84096c583f94275 /meta | |
parent | 2c494b20909790a2bebc2e7e878c39a3dba92dc7 (diff) | |
download | poky-68b7f18edd6b487f5d303ffda46d24fd2a4f3a2f.tar.gz |
utils.bbclass: Fix documentation of create_cmdline_wrapper
(From OE-Core rev: 56160ca49dd546b7db07ae2021eefef7279b0f10)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/utils.bbclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index c47ad6976d..52e511f5cf 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass | |||
@@ -246,12 +246,12 @@ oe_machinstall() { | |||
246 | } | 246 | } |
247 | 247 | ||
248 | create_cmdline_wrapper () { | 248 | create_cmdline_wrapper () { |
249 | # Create a wrapper script | 249 | # Create a wrapper script where commandline options are needed |
250 | # | 250 | # |
251 | # These are useful to work around relocation issues, by setting environment | 251 | # These are useful to work around relocation issues, by passing extra options |
252 | # variables which point to paths in the filesystem. | 252 | # to a program |
253 | # | 253 | # |
254 | # Usage: create_wrapper FILENAME [[VAR=VALUE]..] | 254 | # Usage: create_cmdline_wrapper FILENAME <extra-options> |
255 | 255 | ||
256 | cmd=$1 | 256 | cmd=$1 |
257 | shift | 257 | shift |
@@ -269,7 +269,7 @@ END | |||
269 | } | 269 | } |
270 | 270 | ||
271 | create_wrapper () { | 271 | create_wrapper () { |
272 | # Create a wrapper script | 272 | # Create a wrapper script where extra environment variables are needed |
273 | # | 273 | # |
274 | # These are useful to work around relocation issues, by setting environment | 274 | # These are useful to work around relocation issues, by setting environment |
275 | # variables which point to paths in the filesystem. | 275 | # variables which point to paths in the filesystem. |