浏览代码

fix compilation of native gems required for installing fpm

"build-essential" was being installed by setup-mingw-w64 but
not by the setup-schroot-xxx targets, fixes #2478
Ashish Kulkarni 10 年之前
父节点
当前提交
87a547e2b7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scripts/build.py

+ 1 - 1
scripts/build.py

@@ -727,7 +727,7 @@ def check_setup_schroot(config):
 
 def build_setup_schroot(config, basedir):
     install_packages('git', 'debootstrap', 'schroot', 'rinse', 'debian-archive-keyring',
-                     'ruby', 'ruby-dev', 'libffi-dev', 'tar', 'xz-utils')
+                     'build-essential', 'ruby', 'ruby-dev', 'libffi-dev', 'tar', 'xz-utils')
     if not get_output('which', 'fpm'):
         shell('gem install -V fpm -N')