diff options
author | Christopher Larson <chris_larson@mentor.com> | 2016-05-05 12:30:56 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-14 23:05:11 +0100 |
commit | e81c8fc1b67e5775db0097e2983cb23192f88904 (patch) | |
tree | 38d511c19c77ac8f44f10208c55111a2a8e3216c /meta/recipes-graphics/pong-clock/pong-clock_1.0.bb | |
parent | e593d3aeb2ea5f08d6e0753133fe89e345b339e8 (diff) | |
download | poky-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>
Diffstat (limited to 'meta/recipes-graphics/pong-clock/pong-clock_1.0.bb')
-rw-r--r-- | meta/recipes-graphics/pong-clock/pong-clock_1.0.bb | 2 |
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 | |||
13 | S = "${WORKDIR}" | 13 | S = "${WORKDIR}" |
14 | 14 | ||
15 | do_compile () { | 15 | do_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 | ||
19 | do_install () { | 19 | do_install () { |