diff options
Diffstat (limited to 'ubuntu/maverick/applications/tdeio-ftps')
-rw-r--r-- | ubuntu/maverick/applications/tdeio-ftps/debian/cdbs/debian-qt-kde.mk | 5 | ||||
-rwxr-xr-x | ubuntu/maverick/applications/tdeio-ftps/debian/rules | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/ubuntu/maverick/applications/tdeio-ftps/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/tdeio-ftps/debian/cdbs/debian-qt-kde.mk index f72df2152..b4b889c6d 100644 --- a/ubuntu/maverick/applications/tdeio-ftps/debian/cdbs/debian-qt-kde.mk +++ b/ubuntu/maverick/applications/tdeio-ftps/debian/cdbs/debian-qt-kde.mk @@ -11,7 +11,12 @@ _cdbs_class_debian-qt-kde := 1 common-configure-arch common-configure-indep:: debian/stamp-cvs-make debian/stamp-cvs-make: 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; touch debian/stamp-cvs-make diff --git a/ubuntu/maverick/applications/tdeio-ftps/debian/rules b/ubuntu/maverick/applications/tdeio-ftps/debian/rules index 55935a695..14f8d0476 100755 --- a/ubuntu/maverick/applications/tdeio-ftps/debian/rules +++ b/ubuntu/maverick/applications/tdeio-ftps/debian/rules @@ -17,10 +17,15 @@ debian/stamp-bootstrap: dh_testdir # Regenerate build system - ! [ -f /usr/share/libtool/ltmain.sh ] || \ +ifneq "$(wildcard /usr/share/libtool/ltmain.sh)" "" cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh - ! [ -f /usr/share/libtool/config/ltmain.sh ] || \ +endif +ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh +endif +ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" + cp -f /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh +endif cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in autoreconf --install && automake -f && \ |