diff options
Diffstat (limited to 'recipes-toolchain/mingw-w64-headers.recipe')
-rw-r--r-- | recipes-toolchain/mingw-w64-headers.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-toolchain/mingw-w64-headers.recipe b/recipes-toolchain/mingw-w64-headers.recipe index f32b1f47..c3906853 100644 --- a/recipes-toolchain/mingw-w64-headers.recipe +++ b/recipes-toolchain/mingw-w64-headers.recipe @@ -16,7 +16,7 @@ class Recipe(recipe.Recipe): self._sysroot = os.path.join(self.config.prefix, self.host, 'sysroot') self.configure_options += ' --host=%s' % self.host self.configure_options += ' --with-sysroot=%s ' % self._sysroot - self.make_install = 'make install DESTDIR=%s' % self._sysroot + self.make_install = ['make', 'install', 'DESTDIR=' + self._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-headers') |