summaryrefslogtreecommitdiff
path: root/recipes-toolchain/mingw-w64-crt.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-toolchain/mingw-w64-crt.recipe')
-rw-r--r--recipes-toolchain/mingw-w64-crt.recipe2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-toolchain/mingw-w64-crt.recipe b/recipes-toolchain/mingw-w64-crt.recipe
index 93b04e4d..31db8013 100644
--- a/recipes-toolchain/mingw-w64-crt.recipe
+++ b/recipes-toolchain/mingw-w64-crt.recipe
@@ -22,7 +22,7 @@ class Recipe(recipe.Recipe):
sysroot = os.path.join(self.config.prefix, self.host, 'sysroot')
self.configure_options += ' --host=%s' % self.host
self.configure_options += ' --with-sysroot=%s ' % sysroot
- self.make_install = 'make install DESTDIR=%s' % sysroot
+ self.make_install = ['make', 'install', 'DESTDIR=' + sysroot]
self.build_dir = os.path.join(self.config.sources,
'mingw-w64-%s' % self.version)
self.make_dir = os.path.join(self.build_dir, 'mingw-w64-crt')