1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-04 14:09:47 +00:00

utils.bbclass: Fix documentation of create_cmdline_wrapper

(From OE-Core rev: 56160ca49dd546b7db07ae2021eefef7279b0f10)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2012-11-09 12:02:04 +01:00
parent 2c494b2090
commit 68b7f18edd
+5 -5
View File
@@ -246,12 +246,12 @@ oe_machinstall() {
} }
create_cmdline_wrapper () { create_cmdline_wrapper () {
# Create a wrapper script # Create a wrapper script where commandline options are needed
# #
# These are useful to work around relocation issues, by setting environment # These are useful to work around relocation issues, by passing extra options
# variables which point to paths in the filesystem. # to a program
# #
# Usage: create_wrapper FILENAME [[VAR=VALUE]..] # Usage: create_cmdline_wrapper FILENAME <extra-options>
cmd=$1 cmd=$1
shift shift
@@ -269,7 +269,7 @@ END
} }
create_wrapper () { create_wrapper () {
# Create a wrapper script # Create a wrapper script where extra environment variables are needed
# #
# These are useful to work around relocation issues, by setting environment # These are useful to work around relocation issues, by setting environment
# variables which point to paths in the filesystem. # variables which point to paths in the filesystem.