summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 fe38ef9..6c14f0e 100644
--- a/recipes/mingw-runtime.recipe
+++ b/recipes/mingw-runtime.recipe
@@ -50,7 +50,11 @@ class Recipe(recipe.Recipe):
os.makedirs(os.path.join(self.config.prefix, 'bin'))
if not os.path.exists(os.path.join(self.config.prefix, 'lib')):
os.makedirs(os.path.join(self.config.prefix, 'lib'))
- for f in ['libstdc++-6', 'libgomp-1', 'libwinpthread-1']:
+ for f in ['libwinpthread-1']:
+ shutil.copy(
+ os.path.join(self.config.toolchain_prefix, 'bin', f + '.dll'),
+ os.path.join(self.config.prefix, 'bin', f + '.dll'))
+ for f in ['libgomp-1', 'libstdc++-6']:
shutil.copy(
os.path.join(self.config.toolchain_prefix, binmingw, f + '.dll'),
os.path.join(self.config.prefix, 'bin', f + '.dll'))