summaryrefslogtreecommitdiff
path: root/recipes
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-27 11:37:55 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-27 11:49:53 +0200
commitdcb2784074971c64c30792dc204efbcd89c1f05f (patch)
tree7e65aebbdc2c0003935dd0d70b335a0a00d02318 /recipes
parent0fa2690bc910c6c6958729c55ee92f13b09c1807 (diff)
mingw-runtime: fix dll's paths in native windows
Diffstat (limited to 'recipes')
-rw-r--r--recipes/mingw-runtime.recipe6
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/mingw-runtime.recipe b/recipes/mingw-runtime.recipe
index 2954e18..abc27fa 100644
--- a/recipes/mingw-runtime.recipe
+++ b/recipes/mingw-runtime.recipe
@@ -46,10 +46,14 @@ class Recipe(recipe.Recipe):
binmingw = os.path.join(self.config.host, 'lib')
libmingw = os.path.join(self.config.host, 'lib')
# copy the dll
- for f in ['libstdc++-6', 'libgomp-1', 'libgcc_s_sjlj-1']:
+ for f in ['libstdc++-6', 'libgomp-1']:
shutil.copy(
os.path.join(self.config.toolchain_prefix, binmingw, f + '.dll'),
os.path.join(self.config.prefix, 'bin', f + '.dll'))
+ for f in ['libgcc_s_sjlj-1']:
+ shutil.copy(
+ os.path.join(self.config.toolchain_prefix, libmingw, f + '.dll'),
+ os.path.join(self.config.prefix, 'bin', f + '.dll'))
# copy the development libraries
for f in ['libstdc++', 'libgomp']:
# Copy the dll.a