diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2021-01-12 19:46:00 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-15 13:39:48 +0000 |
commit | 87e7057b71fdd0f084c0b7e3396067bea0eb3d24 (patch) | |
tree | 9a1e505a237f1ae285bf606791531f216a4a565d /documentation/dev-manual | |
parent | 827e68675ab3c1a541a5aa10586902226e876e51 (diff) | |
download | poky-87e7057b71fdd0f084c0b7e3396067bea0eb3d24.tar.gz |
common-tasks.rst: Fix GNU_HASH in hello.bb
Fix the following GNU_HASH issue in "Single .c File Package
(Hello World!)" example:
ERROR: hello-1.0-r0 do_package_qa: QA Issue: File /usr/bin/helloworld in package hello doesn't have GNU_HASH (didn't pass LDFLAGS?) [ldflags]
Reported-by: Matthew Tsenkov <matthew.tsenkov@konsulko.com>
(From yocto-docs rev: 99a53f443193c0becd48a07a2dd740bb417dcf49)
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r-- | documentation/dev-manual/common-tasks.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst index e1dee8ecdd..6281e0e3b4 100644 --- a/documentation/dev-manual/common-tasks.rst +++ b/documentation/dev-manual/common-tasks.rst | |||
@@ -2298,7 +2298,7 @@ directory BitBake uses for the build. | |||
2298 | S = "${WORKDIR}" | 2298 | S = "${WORKDIR}" |
2299 | 2299 | ||
2300 | do_compile() { | 2300 | do_compile() { |
2301 | ${CC} helloworld.c -o helloworld | 2301 | ${CC} ${LDFLAGS} helloworld.c -o helloworld |
2302 | } | 2302 | } |
2303 | 2303 | ||
2304 | do_install() { | 2304 | do_install() { |