diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-12-28 01:13:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-12-28 01:13:08 -0600 |
commit | 6458202b73234c873fdfbeccee1d4e5eb46ef664 (patch) | |
tree | 92457868cdf7e00951a05be279bd4936e2bd86d8 /ubuntu/maverick | |
parent | 88e2c685d64cdc4ccd15a8d3e4b930875addcb16 (diff) | |
download | tde-packaging-6458202b73234c873fdfbeccee1d4e5eb46ef664.tar.gz tde-packaging-6458202b73234c873fdfbeccee1d4e5eb46ef664.zip |
Fix libr packaging FTBFS
Diffstat (limited to 'ubuntu/maverick')
-rwxr-xr-x | ubuntu/maverick/dependencies/libr/debian/rules | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/ubuntu/maverick/dependencies/libr/debian/rules b/ubuntu/maverick/dependencies/libr/debian/rules index 7314f03f2..53fe01cf9 100755 --- a/ubuntu/maverick/dependencies/libr/debian/rules +++ b/ubuntu/maverick/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" |