aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2020-09-11 23:55:58 -0400
committerRob Austein <sra@hactrn.net>2020-09-11 23:55:58 -0400
commit0e8cbe8f56aef78acb33c150bfbe37d7f90d2849 (patch)
treeebf5ff7da3600be72970b60969d6b7ad643a9ede
parent2b3e202f283926268c94b0227c18643a418f8c41 (diff)
Ubuntu 20.04 dropped support for i386
-rw-r--r--Makefile6
1 files 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)