From 04b2d5cd691dbd9f5f6a04de717a10e3bebccf72 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 20 Feb 2020 08:58:24 -0500 Subject: [PATCH] Fix building under wheezy The supported wheezy platform we are now adding pyca to. Additionally, the options were wrong for such old debian build utilites. Change-Id: If92de1356cd45c5f4a260b6df72144dbbfe70c3d --- builddeb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/builddeb b/builddeb index 238e092b..7c2863d6 100755 --- a/builddeb +++ b/builddeb @@ -6,11 +6,9 @@ cd /tmp/pyghmi export PYEXEC=python3 export DSCARGS="--with-python2=True --with-python3=True" if grep wheezy /etc/os-release; then - # wheezy is difficult on pyca, use cryptodomex for that platform - patch -p1 < wheezy.patch # also it's old, use python2 instead of python3 export PYEXEC=python - export DSCARGS="--with-python2=True --with-python3=False" + export DSCARGS="" fi # If not PBR, use the setup.py.tmpl $PYEXEC -c 'import pbr' || ./makesetup