aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
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 07:26:40 +0100
commitdc77cd7e960d047e186c0a87a70dfb3b9653579e (patch)
treea7ca44d75ccee37db758e81ae5b88d19b58cb74c /meta/recipes-graphics
parent8da33111c924be0bef8e175c53dbd3a439dc9788 (diff)
downloadopenembedded-core-contrib-dc77cd7e960d047e186c0a87a70dfb3b9653579e.tar.gz
pong-clock: obey CFLAGS, LDFLAGS
Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-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
S = "${WORKDIR}"
do_compile () {
- ${CC} -o pong-clock pong-clock-no-flicker.c `pkg-config --cflags --libs x11 xau xdmcp`
+ ${CC} ${CFLAGS} ${LDFLAGS} -o pong-clock pong-clock-no-flicker.c `pkg-config --cflags --libs x11 xau xdmcp`
}
do_install () {