diff -Nru runc-1.0.0~rc7+git20190403.029124da/debian/changelog runc-1.0.0~rc7+git20190403.029124da/debian/changelog --- runc-1.0.0~rc7+git20190403.029124da/debian/changelog 2019-05-22 00:17:26.000000000 +0000 +++ runc-1.0.0~rc7+git20190403.029124da/debian/changelog 2019-05-22 01:59:55.000000000 +0000 @@ -1,3 +1,11 @@ +runc (1.0.0~rc7+git20190403.029124da-0ubuntu1~16.04.3) xenial; urgency=medium + + * Correct build dependencies on s390x. + * Fix build on powerc (need to check for binary-arch as well as binary + target). + + -- Michael Hudson-Doyle Wed, 22 May 2019 13:59:55 +1200 + runc (1.0.0~rc7+git20190403.029124da-0ubuntu1~16.04.2) xenial; urgency=medium * Build an empty package on powerpc that tells the user about itself on diff -Nru runc-1.0.0~rc7+git20190403.029124da/debian/control runc-1.0.0~rc7+git20190403.029124da/debian/control --- runc-1.0.0~rc7+git20190403.029124da/debian/control 2019-05-22 00:08:24.000000000 +0000 +++ runc-1.0.0~rc7+git20190403.029124da/debian/control 2019-05-22 01:38:56.000000000 +0000 @@ -9,7 +9,7 @@ Build-Depends: debhelper, dh-golang, go-md2man, - golang-1.10-go [amd64 arm64 armhf i386 ppc64el], + golang-1.10-go [amd64 arm64 armhf i386 ppc64el s390x], libapparmor-dev, libseccomp-dev, pkg-config, diff -Nru runc-1.0.0~rc7+git20190403.029124da/debian/rules runc-1.0.0~rc7+git20190403.029124da/debian/rules --- runc-1.0.0~rc7+git20190403.029124da/debian/rules 2019-05-22 00:08:07.000000000 +0000 +++ runc-1.0.0~rc7+git20190403.029124da/debian/rules 2019-05-22 01:46:20.000000000 +0000 @@ -17,7 +17,7 @@ if [ "$@" = "clean" ]; then \ rm -f debian/runc.preinst debian/runc.templates; \ fi; \ - if [ "$@" = "binary" ]; then \ + if [ "$@" = "binary" ] || [ "$@" = "binary-arch" ]; then \ cp debian/runc.preinst.powerpc debian/runc.preinst; \ cp debian/runc.templates.powerpc debian/runc.templates; \ dh_installdebconf; \