diff options
author | Lisandro Damián Nicanor Pérez Meyer <perezmeyer@gmail.com> | 2012-12-17 22:04:57 -0300 |
---|---|---|
committer | Lisandro Damián Nicanor Pérez Meyer <perezmeyer@gmail.com> | 2012-12-17 22:04:57 -0300 |
commit | 69ba23bb72d94cf7f81dbab0f6f85df4f70d0756 (patch) | |
tree | 6cc01790cdf5fbf3131d3c52e8c40b1f90c56e6d | |
parent | 454bd2153eef913fd831d0abb64caf5119811fce (diff) | |
download | qt4-x11-69ba23bb72d94cf7f81dbab0f6f85df4f70d0756.tar.gz |
Do not use precompiled headers on ia64.
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 237c2e0..819d81c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ qt4-x11 (4:4.8.2+dfsg-6) UNRELEASED; urgency=low * Hopefully fix ia64 FTBFS: - Remove add-winvalid.patch. Stephan Schreiber has determined the problem with the precompiled headers on ia64. Thanks *a lot* Stephan. + - Apply the changes suggested by Stephan to avoid using pre compiled + headers just on ia64. -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Mon, 17 Dec 2012 21:47:47 -0300 diff --git a/debian/rules b/debian/rules index 1eb26b7..c929169 100755 --- a/debian/rules +++ b/debian/rules @@ -85,6 +85,10 @@ else endif endif +ifeq ($(DEB_HOST_ARCH),ia64) + extra_configure_opts += -no-pch +endif + %: dh $@ --with pkgkde_symbolshelper |