diff options
author | Modestas Vainius <modax@debian.org> | 2010-02-19 19:26:40 +0000 |
---|---|---|
committer | Modestas Vainius <modax@debian.org> | 2010-02-19 19:26:40 +0000 |
commit | d25bba1ad11fa2d4fde61e6cbfcb4a1d0f8ae7e2 (patch) | |
tree | 9f880242be3862f691b3d008173d90859903ee95 /debian/rules | |
parent | f7c3d2e19c2e3cf62377166d074ff80a33f3f9f0 (diff) | |
download | kde4libs-d25bba1ad11fa2d4fde61e6cbfcb4a1d0f8ae7e2.tar.gz |
Merge relevant changes from 4:4.3.4-2 and 4:4.3.4-3.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index e1675c6..c6a70ea 100755 --- a/debian/rules +++ b/debian/rules @@ -26,6 +26,14 @@ DEB_ALL_LIBRARIES_SUBST_PACKAGES = kdelibs5-dev kdelibs5-dbg DEB_KDE43_LIBRARIES_SUBST_PACKAGES = kdelibs5 DEB_STRICT_LOCAL_SHLIBS_PACKAGES = $(DEB_LIBRARY_PACKAGES) +# Fixes FTBFS (4:4.3.4-2) on ia64 (khtml code is too large to fit): +# html/khtmlview.cpp:3623: relocation truncated to fit: GPREL22 against `.rodata' +# etc. We will have to reevalute if this is still needed some time later. +ifeq (ia64,$(DEB_HOST_ARCH)) + CFLAGS += -ffunction-sections + CXXFLAGS += -ffunction-sections +endif + include /usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk include /usr/share/pkg-kde-tools/qt-kde-team/1/library-packages.mk |