diff options
author | Steve Langasek <steve.langasek@canonical.com> | 2020-01-09 00:27:41 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2020-01-09 00:27:41 +0000 |
commit | 9cc3aabd122360c7a01f6180bd62ed5c0f421306 (patch) | |
tree | fb1a586ef1484f35302c41caba31fe9834bc829a | |
parent | 429e957c0859ea1b4a7dd614c530adccc11c407e (diff) |
Don't build openssh-tests on Ubuntu i386
Closes: #948466
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | debian/rules | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 39bc1192c..bf94834c0 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,8 +1,12 @@ | |||
1 | openssh (1:8.1p1-3) UNRELEASED; urgency=medium | 1 | openssh (1:8.1p1-3) UNRELEASED; urgency=medium |
2 | 2 | ||
3 | [ Colin Watson ] | ||
3 | * Drop suggestion of rssh, since it's been removed (see | 4 | * Drop suggestion of rssh, since it's been removed (see |
4 | https://bugs.debian.org/923691). | 5 | https://bugs.debian.org/923691). |
5 | 6 | ||
7 | [ Steve Langasek ] | ||
8 | * Don't build openssh-tests on Ubuntu i386 (closes: #948466). | ||
9 | |||
6 | -- Colin Watson <cjwatson@debian.org> Mon, 16 Dec 2019 15:40:12 +0000 | 10 | -- Colin Watson <cjwatson@debian.org> Mon, 16 Dec 2019 15:40:12 +0000 |
7 | 11 | ||
8 | openssh (1:8.1p1-2) unstable; urgency=medium | 12 | openssh (1:8.1p1-2) unstable; urgency=medium |
diff --git a/debian/rules b/debian/rules index d1f282d11..5e415fc7f 100755 --- a/debian/rules +++ b/debian/rules | |||
@@ -100,8 +100,12 @@ confflags_udeb += --with-cflags='$(cflags_udeb)' | |||
100 | confflags += --with-ldflags='$(strip -Wl,--as-needed $(LDFLAGS))' | 100 | confflags += --with-ldflags='$(strip -Wl,--as-needed $(LDFLAGS))' |
101 | confflags_udeb += --with-ldflags='-Wl,--as-needed' | 101 | confflags_udeb += --with-ldflags='-Wl,--as-needed' |
102 | 102 | ||
103 | ifeq ($(shell dpkg-vendor --is Ubuntu && echo yes) $(DEB_HOST_ARCH), yes i386) | ||
104 | BUILD_PACKAGES += -Nopenssh-tests | ||
105 | endif | ||
106 | |||
103 | %: | 107 | %: |
104 | dh $@ --with=autoreconf,systemd,runit | 108 | dh $@ --with=autoreconf,systemd,runit $(BUILD_PACKAGES) |
105 | 109 | ||
106 | autoreconf: | 110 | autoreconf: |
107 | autoreconf -f -i | 111 | autoreconf -f -i |