diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-12-28 01:13:08 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-07-14 15:38:41 +0200 |
commit | 599c35d9e78287ceb725224e4db3476981b2a958 (patch) | |
tree | 8707d1cc09a641d5a87fd72fff7a498c2971f3ad /debian | |
parent | 9c2670d3b538337387baed486caf8ed78942806f (diff) | |
download | tde-packaging-599c35d9e78287ceb725224e4db3476981b2a958.tar.gz tde-packaging-599c35d9e78287ceb725224e4db3476981b2a958.zip |
Fix libr packaging FTBFS
(cherry picked from commit 6458202b73234c873fdfbeccee1d4e5eb46ef664)
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/lenny/dependencies/libr/debian/rules | 11 | ||||
-rwxr-xr-x | debian/squeeze/dependencies/libr/debian/rules | 11 |
2 files changed, 14 insertions, 8 deletions
diff --git a/debian/lenny/dependencies/libr/debian/rules b/debian/lenny/dependencies/libr/debian/rules index 7314f03f2..53fe01cf9 100755 --- a/debian/lenny/dependencies/libr/debian/rules +++ b/debian/lenny/dependencies/libr/debian/rules @@ -32,6 +32,13 @@ major=2 #major=`ls src/.libs/lib*.so.* | \ # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'` +configure: + cp -Rp /usr/share/aclocal/libtool.m4 libtool.m4.in + cp -Rp /usr/share/libtool/config/ltmain.sh ltmain.sh + cp -Rp /usr/share/libtool/libltdl/aclocal.m4 aclocal.m4 + autoconf + automake + config.status: configure dh_testdir # Add here commands to configure the package. @@ -41,10 +48,6 @@ endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess endif - cp -Rp /usr/share/aclocal/libtool.m4 libtool.m4.in - cp -Rp /usr/share/libtool/config/ltmain.sh ltmain.sh - autoconf - automake ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" diff --git a/debian/squeeze/dependencies/libr/debian/rules b/debian/squeeze/dependencies/libr/debian/rules index 7314f03f2..53fe01cf9 100755 --- a/debian/squeeze/dependencies/libr/debian/rules +++ b/debian/squeeze/dependencies/libr/debian/rules @@ -32,6 +32,13 @@ major=2 #major=`ls src/.libs/lib*.so.* | \ # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'` +configure: + cp -Rp /usr/share/aclocal/libtool.m4 libtool.m4.in + cp -Rp /usr/share/libtool/config/ltmain.sh ltmain.sh + cp -Rp /usr/share/libtool/libltdl/aclocal.m4 aclocal.m4 + autoconf + automake + config.status: configure dh_testdir # Add here commands to configure the package. @@ -41,10 +48,6 @@ endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess endif - cp -Rp /usr/share/aclocal/libtool.m4 libtool.m4.in - cp -Rp /usr/share/libtool/config/ltmain.sh ltmain.sh - autoconf - automake ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" |