Addition to prev. revision [#CLICKHOUSE-2]

This commit is contained in:
Alexey Milovidov 2018-05-14 22:03:19 +03:00
parent a693cb3333
commit 6b9160665b
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ DOCKER_UBUNTU_TAG_ARCH=arm64 # How the architecture is named in Docker
DOCKER_UBUNTU_QEMU_VER=v2.9.1 DOCKER_UBUNTU_QEMU_VER=v2.9.1
DOCKER_UBUNTU_REPO=multiarch/ubuntu-core DOCKER_UBUNTU_REPO=multiarch/ubuntu-core
THREADS=$(grep -c ^processor /proc/cpuinfo || nproc || sysctl -a | grep -F 'hw.ncpu') THREADS=$(grep -c ^processor /proc/cpuinfo || nproc || sysctl -a | grep -F 'hw.ncpu' | grep -oE '[0-9]+')
# All scripts should return 0 in case of success, 1 in case of permanent error, # All scripts should return 0 in case of success, 1 in case of permanent error,
# 2 in case of temporary error, any other code in case of permanent error. # 2 in case of temporary error, any other code in case of permanent error.

View File

@ -104,7 +104,7 @@ case $PACKAGE_MANAGER in
$SUDO pkg install -y readline $SUDO pkg install -y readline
;; ;;
libunixodbc-dev) libunixodbc-dev)
$SUDO pkg install -y unixODBC $SUDO pkg install -y unixODBC libltdl
;; ;;
libmysqlclient-dev) libmysqlclient-dev)
$SUDO pkg install -y mysql57-client $SUDO pkg install -y mysql57-client