summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-27 11:07:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-28 12:00:31 +0100
commit3af9f06f1ba156b7b34c934802d03e4fab225a1e (patch)
treedad896188977627bae4e86469bf9187a227c60ba /meta/lib/oeqa/runtime
parent00f0d2bfa0a05232a2926f21ef8fe533f436185d (diff)
downloadpoky-3af9f06f1ba156b7b34c934802d03e4fab225a1e.tar.gz
oeqa/sdk/gcc: Fix makefile test
The makefile test was hardcoding a test for gcc. In the SDK context, we need to use $(CC) to use the cross compiler. (From OE-Core rev: d28ddc23bbf232901ae07f7a01f821ecc4b79e32) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/files/testsdkmakefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/files/testsdkmakefile b/meta/lib/oeqa/runtime/files/testsdkmakefile
new file mode 100644
index 0000000000..fb05f822f3
--- /dev/null
+++ b/meta/lib/oeqa/runtime/files/testsdkmakefile
@@ -0,0 +1,5 @@
1test: test.o
2 $(CC) -o test test.o -lm
3test.o: test.c
4 $(CC) -c test.c
5