summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-04-29 07:26:02 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-06 16:03:09 +0200
commita272332eb31fd49caf46bea3ce0b7ca78f58cfb3 (patch)
tree3bfd3bddfd9c5c3e3f2a1140d3ab51259d6703df
parent3ea37e7c1c9e02fc8e22e8a81396b7e49cc61a90 (diff)
toolchain: fix files listing in recipes
-rw-r--r--recipes/toolchain/gendef.recipe2
-rw-r--r--recipes/toolchain/mingw-w64.recipe1
-rw-r--r--recipes/toolchain/winpthreads.recipe14
3 files changed, 15 insertions, 2 deletions
diff --git a/recipes/toolchain/gendef.recipe b/recipes/toolchain/gendef.recipe
index 1698071..5ee326c 100644
--- a/recipes/toolchain/gendef.recipe
+++ b/recipes/toolchain/gendef.recipe
@@ -3,7 +3,7 @@ class Recipe(recipe.Recipe):
version = 'v2.0.8'
licenses = [License.LGPL]
srcdir = 'mingw-w64-tools/gendef'
- files_bins = ['gendef']
+ files_bin = ['bin/gendef.exe']
def prepare(self):
diff --git a/recipes/toolchain/mingw-w64.recipe b/recipes/toolchain/mingw-w64.recipe
index 1001908..ee9f8b7 100644
--- a/recipes/toolchain/mingw-w64.recipe
+++ b/recipes/toolchain/mingw-w64.recipe
@@ -17,7 +17,6 @@ class Recipe(recipe.Recipe):
files.extend(['%s/lib/%s' % ('mingw', x) for x in self.files_crt])
self.files_crt = files
- files_gendef = ['bin/gendef.exe']
files_crt = [
'CRT_fp10.o', 'CRT_fp8.o', 'CRT_glob.o', 'CRT_noglob.o', 'binmode.o', 'crt1.o',
'crt1u.o', 'crt2.o', 'crt2u.o', 'crtbegin.o', 'crtend.o', 'dllcrt1.o',
diff --git a/recipes/toolchain/winpthreads.recipe b/recipes/toolchain/winpthreads.recipe
index 681c510..b53b145 100644
--- a/recipes/toolchain/winpthreads.recipe
+++ b/recipes/toolchain/winpthreads.recipe
@@ -4,6 +4,20 @@ class Recipe(recipe.Recipe):
licenses = [License.LGPL]
srcdir = 'mingw-w64-libraries/winpthreads'
configure_options = '--enable-shared --enable-static '
+ files_all = [
+ 'bin/libwinpthread-1.dll',
+ 'lib/libpthread.a',
+ 'lib/libpthread.dll.a',
+ 'lib/libwinpthread.a',
+ 'lib/libwinpthread.dll.a',
+ 'lib/libwinpthread.la',
+ 'include/pthread.h',
+ 'include/pthread_compat.h',
+ 'include/pthread_time.h',
+ 'include/pthread_unistd.h',
+ 'include/sched.h',
+ 'include/semaphore.h',
+ ]
def prepare(self):