summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2016-05-05 12:30:56 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-14 23:05:11 +0100
commite81c8fc1b67e5775db0097e2983cb23192f88904 (patch)
tree38d511c19c77ac8f44f10208c55111a2a8e3216c
parente593d3aeb2ea5f08d6e0753133fe89e345b339e8 (diff)
downloadpoky-e81c8fc1b67e5775db0097e2983cb23192f88904.tar.gz
pong-clock: obey CFLAGS, LDFLAGS
(From OE-Core rev: dc77cd7e960d047e186c0a87a70dfb3b9653579e) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-graphics/pong-clock/pong-clock_1.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb b/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb
index 0e1a7928f2..6c3bcd831c 100644
--- a/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb
+++ b/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb
@@ -13,7 +13,7 @@ LIC_FILES_CHKSUM = "file://pong-clock-no-flicker.c;beginline=1;endline=23;md5=dd
13S = "${WORKDIR}" 13S = "${WORKDIR}"
14 14
15do_compile () { 15do_compile () {
16 ${CC} -o pong-clock pong-clock-no-flicker.c `pkg-config --cflags --libs x11 xau xdmcp` 16 ${CC} ${CFLAGS} ${LDFLAGS} -o pong-clock pong-clock-no-flicker.c `pkg-config --cflags --libs x11 xau xdmcp`
17} 17}
18 18
19do_install () { 19do_install () {