summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2015-07-06 00:17:53 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2015-07-06 00:17:53 (GMT)
commitb14c1a3a9c25cf99c004b42e1ed85051a96a126b (patch)
tree4c133e5940f6d3679a1dd2ca5a2c513198415549
parent26ac245ffa69856248e519fde184c162f89b2f63 (diff)
downloadmxe-b14c1a3a9c25cf99c004b42e1ed85051a96a126b.zip
mxe-b14c1a3a9c25cf99c004b42e1ed85051a96a126b.tar.gz
mxe-b14c1a3a9c25cf99c004b42e1ed85051a96a126b.tar.bz2
build-pkg: Add libtool-bin and p7zip-full as deps
Fixes #753. Fixes #754.
-rwxr-xr-xtools/build-pkg.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/build-pkg.lua b/tools/build-pkg.lua
index e8708a9..a134867 100755
--- a/tools/build-pkg.lua
+++ b/tools/build-pkg.lua
@@ -11,6 +11,8 @@
-- Packages are written to `*.tar.xz` files.
-- Debian packages are written to `*.deb` files.
+-- You also need Debian Jessie or later to install these packages
+
local max_packages = tonumber(os.getenv('MXE_MAX_PACKAGES'))
local MXE_DIR = '/usr/lib/mxe'
@@ -319,9 +321,9 @@ local function makeMxeRequirementsDeb(arch)
local deps = {
'autoconf', 'automake', 'autopoint', 'bash', 'bison',
'bzip2', 'cmake', 'flex', 'gettext', 'git', 'g++',
- 'gperf', 'intltool', 'libffi-dev', 'libtool',
+ 'gperf', 'intltool', 'libffi-dev', 'libtool', 'libtool-bin',
'libltdl-dev', 'libssl-dev', 'libxml-parser-perl',
- 'make', 'openssl', 'patch', 'perl', 'pkg-config',
+ 'make', 'openssl', 'patch', 'perl', 'p7zip-full', 'pkg-config',
'python', 'ruby', 'scons', 'sed', 'unzip', 'wget',
'xz-utils',
}