dockerd: be more verbose when building

This commit is contained in:
Frederico F. de Oliveira 2021-01-19 03:50:52 +00:00 committed by Yaksh Bariya
parent 3960bc2fc3
commit 2c8f157fbf
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581

View File

@ -24,7 +24,7 @@ termux_step_make() {
export DOCKER_GITCOMMIT=8891c58a43
export DOCKER_BUILDTAGS='exclude_graphdriver_btrfs exclude_graphdriver_devicemapper exclude_graphdriver_quota selinux exclude_graphdriver_aufs'
# horrible but effective way to apply patches on the fly while compiling
(while ! IFS='' files=$(AUTO_GOPATH=1 PREFIX='' hack/make.sh dynbinary 2>&1 1>/dev/null); do if ! xargs sed -i 's/\("runtime"\)/_ \1/' < <(echo $files | grep runtime | cut -d':' -f1 | cut -c38-); then echo $files; exit 1; fi; done)
(while ! IFS='' files=$(AUTO_GOPATH=1 PREFIX='' hack/make.sh dynbinary 2>&1 1>/dev/null); do echo $files; if ! xargs sed -i 's/\("runtime"\)/_ \1/' < <(echo $files | grep runtime | cut -d':' -f1 | cut -c38-); then echo $files 1>&2; exit 1; fi; done)
}
termux_step_make_install() {