diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-02-13 16:41:43 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-02-27 01:11:48 +0100 |
commit | ac42a7af4f1f51616396aeb92c69bc6c8ede2d53 (patch) | |
tree | 7cf68f05d9a97aef74619212aeb357f91857197b /debian/squeeze/tdetoys | |
parent | ef300f2631545d45239ed23c60af6deaaf5358ef (diff) | |
download | tde-packaging-ac42a7af4f1f51616396aeb92c69bc6c8ede2d53.tar.gz tde-packaging-ac42a7af4f1f51616396aeb92c69bc6c8ede2d53.zip |
Fix FTBFS on Debian and Ubuntu due to move libtool ltmain.sh
from /usr/share/libtool/config into /usr/share/libtool/build-aux
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 09b52dab01a59f21ce1966ef526a1f7d596b5427)
Diffstat (limited to 'debian/squeeze/tdetoys')
-rw-r--r-- | debian/squeeze/tdetoys/debian/cdbs/debian-qt-kde.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/squeeze/tdetoys/debian/cdbs/debian-qt-kde.mk b/debian/squeeze/tdetoys/debian/cdbs/debian-qt-kde.mk index 4a9d74d88..722579c21 100644 --- a/debian/squeeze/tdetoys/debian/cdbs/debian-qt-kde.mk +++ b/debian/squeeze/tdetoys/debian/cdbs/debian-qt-kde.mk @@ -12,7 +12,12 @@ common-configure-arch common-configure-indep:: debian/stamp-cvs-make debian/stamp-cvs-make: ifndef _cdbs_class_cmake cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in +ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh +endif +ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" + cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh +endif $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist; endif touch debian/stamp-cvs-make |