From 824f57c613368e66cad49c6d4c2fc1fc60244145 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Mon, 26 Oct 2015 15:38:39 +1100 Subject: [PATCH] sb: Only use /usr/local/bin/unzip on FreeBSD. The base package version is broken and does not unzip all files in a zip file cleanly. --- source-builder/sb/freebsd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/source-builder/sb/freebsd.py b/source-builder/sb/freebsd.py index 0c00edd..952463f 100644 --- a/source-builder/sb/freebsd.py +++ b/source-builder/sb/freebsd.py @@ -63,6 +63,7 @@ def load(): '__bison': ('exe', 'required', '/usr/local/bin/bison'), '__git': ('exe', 'required', '/usr/local/bin/git'), '__svn': ('exe', 'required', '/usr/local/bin/svn'), + '__unzip': ('exe', 'optional', '/usr/local/bin/unzip'), '__xz': ('exe', 'optional', '/usr/bin/xz'), '__make': ('exe', 'required', 'gmake'), '__patch_opts': ('none', 'none', '-E')