From 84abedd5361e51f6dcab3db163f7a329b8cfd861 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 10 Nov 2019 11:22:04 +0100 Subject: [PATCH] pmb.config.build_packages: add git (!1832) Always install git when building packages, so abuild won't behave slightly different if it is (not) installed. As nice side-effect, we will always get the pmaports.git commit saved in the resulting .apk file from now on (in .PKGINFO). --- pmb/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 2d434072..6c7fbf71 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -161,7 +161,7 @@ build_device_architectures = ["armhf", "armv7", "aarch64", "x86_64", "x86"] # Packages, that will be installed in a chroot before it builds packages # for the first time -build_packages = ["abuild", "build-base", "ccache"] +build_packages = ["abuild", "build-base", "ccache", "git"] # fnmatch for supported pkgnames, that can be directly compiled inside # the native chroot and a cross-compiler, without using distcc