diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-27 14:38:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-27 15:58:34 +0000 |
commit | bda37a98bccb69e71e11524f4b6364020136133c (patch) | |
tree | 65e677f9e889c73b720d9a354c12d4e974dd66a5 | |
parent | d9bd9e36188ffe9169739e75438b309528cf4660 (diff) | |
download | meta-mingw-bda37a98bccb69e71e11524f4b6364020136133c.tar.gz |
pthreads-win32: Ensure compiler options are preserved
The compiler flags were not getting passed to the compiler, this fixes
the make command so they do get preserved.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | recipes-devtools/pthreads-win32/pthreads-win32_2.9.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/pthreads-win32/pthreads-win32_2.9.1.bb b/recipes-devtools/pthreads-win32/pthreads-win32_2.9.1.bb index d6a6284..01c4bd9 100644 --- a/recipes-devtools/pthreads-win32/pthreads-win32_2.9.1.bb +++ b/recipes-devtools/pthreads-win32/pthreads-win32_2.9.1.bb | |||
@@ -31,7 +31,7 @@ do_configure_prepend() { | |||
31 | } | 31 | } |
32 | 32 | ||
33 | do_compile() { | 33 | do_compile() { |
34 | make -f GNUmakefile CROSS=${SDK_PREFIX} clean GC | 34 | make -f GNUmakefile CROSS=${SDK_PREFIX} CC="${CC}" clean GC |
35 | } | 35 | } |
36 | 36 | ||
37 | do_install() { | 37 | do_install() { |