19 lines
182 B
Text
19 lines
182 B
Text
# vim: set filetype=bitbake :
|
|
|
|
# START_INDENT
|
|
FOO = " \
|
|
bar \
|
|
baz \
|
|
qux \
|
|
"
|
|
|
|
do_configure() {
|
|
oe_conf
|
|
}
|
|
|
|
python do_task() {
|
|
def foo(x):
|
|
if y:
|
|
print(x)
|
|
}
|
|
# END_INDENT
|