From 0e8cbe8f56aef78acb33c150bfbe37d7f90d2849 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Fri, 11 Sep 2020 23:55:58 -0400 Subject: Ubuntu 20.04 dropped support for i386 --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f846349..b20a842 100644 --- a/Makefile +++ b/Makefile @@ -41,8 +41,10 @@ REPO_UMASK := 002 # Debian clean-room package builder setup PBUILDER_BASE := ${HOME}/pbuilder -PBUILDER_TARGETS := $(foreach D, debian/stretch debian/buster , ${D}/i386 ${D}/amd64 ${D}/armhf) \ - $(foreach D, ubuntu/xenial ubuntu/bionic ubuntu/focal , ${D}/i386 ${D}/amd64) +PBUILDER_TARGETS := \ + $(addsuffix /amd64, debian/stretch debian/buster ubuntu/xenial ubuntu/bionic ubuntu/focal) \ + $(addsuffix /i386, debian/stretch debian/buster ubuntu/xenial ubuntu/bionic) \ + $(addsuffix /armhf, debian/stretch debian/buster) # Where we upload the final results (if we do) -- cgit v1.2.3