Skip to content
Snippets Groups Projects
Commit 2b0c3e19 authored by Robert Drab's avatar Robert Drab
Browse files

gn.bbclass: Remove erroneous -C gn command switch


gn docs state that the output dir should be passed as a last argument of the
gn gen command without any preceding switch

Signed-off-by: default avatarRobert Drab <robert.drab@huawei.com>
parent 5a7cae3e
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ B = "${WORKDIR}/out"
gn_do_configure() {
cd ${S}
gn gen ${GN_OPTIONS} --args='${GN_ARGS}' -C ${B}
gn gen ${GN_OPTIONS} --args='${GN_ARGS}' ${B}
}
gn_do_compile() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment