diff options
author | Pino Toscano <pino@debian.org> | 2011-12-14 14:22:35 +0100 |
---|---|---|
committer | Pino Toscano <pino@debian.org> | 2011-12-14 14:22:35 +0100 |
commit | f16b28c1f5e1389446b42453b8b598c67195ebc1 (patch) | |
tree | bea94dc0867d3c801b05c971525cb3818cbdd053 /debian | |
parent | 205ca39591ed7e272ac03a8a10f4d809c9abc28f (diff) | |
download | qt4-x11-f16b28c1f5e1389446b42453b8b598c67195ebc1.tar.gz |
force a non-parallel build on ia64
maybe it fixes the build on this arch...
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 10eacfc..46b7e1c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,7 @@ qt4-x11 (4:4.7.3-9) UNRELEASED; urgency=low + [ Pino Toscano ] + * Force a non-parallel build on ia64, maybe it fixes the build on this arch. -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 14 Dec 2011 14:15:47 +0100 diff --git a/debian/rules b/debian/rules index 7e862a0..2ef477b 100755 --- a/debian/rules +++ b/debian/rules @@ -64,8 +64,12 @@ else platform_arg = glibc-g++ endif +ifneq ($(DEB_HOST_ARCH),ia64) + extra_dh_opts += --parallel +endif + %: - dh $@ --parallel --with pkgkde_symbolshelper + dh $@ $(extra_dh_opts) --with pkgkde_symbolshelper override_dh_auto_configure: # Test broken hppa kernel with glibc >= 2.5 |