Commit 8b402195 authored by Martin Tzvetanov Grigorov's avatar Martin Tzvetanov Grigorov Committed by guillaume quintard

Use fakeroot-tcp for Debian/Ubuntu

There is a problem with fakeroot-sysv on Ubuntu 20.04 aarch64:

Install Build-Depends packages...

+ mk-build-deps --install debian/control

+ yes

semop(1): encountered an error: Function not implemented

Error in the build process: exit status 1
parent 04e1c174
......@@ -5,7 +5,7 @@ set -eux
export DEBIAN_FRONTEND=noninteractive
export DEBCONF_NONINTERACTIVE_SEEN=true
apt-get update
apt-get install -y dpkg-dev debhelper devscripts equivs pkg-config apt-utils
apt-get install -y dpkg-dev debhelper devscripts equivs pkg-config apt-utils fakeroot
echo "PARAM_RELEASE: $PARAM_RELEASE"
echo "PARAM_DIST: $PARAM_DIST"
......@@ -19,6 +19,10 @@ elif [ -z "$PARAM_DIST" ]; then
exit 1
fi
# Ubuntu 20.04 aarch64 fails when using fakeroot-sysv with:
# semop(1): encountered an error: Function not implemented
update-alternatives --set fakeroot /usr/bin/fakeroot-tcp
cd /varnish-cache
ls -la
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment