summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/examples/hello-single/hello.bb
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/ref-manual/examples/hello-single/hello.bb')
-rw-r--r--documentation/ref-manual/examples/hello-single/hello.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/ref-manual/examples/hello-single/hello.bb b/documentation/ref-manual/examples/hello-single/hello.bb
index 0812743e39..90d3aefd86 100644
--- a/documentation/ref-manual/examples/hello-single/hello.bb
+++ b/documentation/ref-manual/examples/hello-single/hello.bb
@@ -8,7 +8,7 @@ SRC_URI = "file://helloworld.c"
8S = "${WORKDIR}" 8S = "${WORKDIR}"
9 9
10do_compile() { 10do_compile() {
11 ${CC} helloworld.c -o helloworld 11 ${CC} ${LDFLAGS} helloworld.c -o helloworld
12} 12}
13 13
14do_install() { 14do_install() {