diff options
Diffstat (limited to 'meta/classes')
-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. |