[Debian-ha-maintainers] Bug#619553: heartbeat: please wipe out dependency_libs from .la files (Policy 10.2)

Steve Langasek steve.langasek at canonical.com
Fri Mar 25 00:26:47 UTC 2011


Package: heartbeat
Version: 1:3.0.4-1
Severity: normal
Tags: patch
User: ubuntu-devel at lists.ubuntu.com
Usertags: origin-ubuntu natty ubuntu-patch

Hi all,

The attached patch has just been applied to the Ubuntu heartbeat package, to
null out the dependency_libs field in the libtool .la files being shipped in
the -dev package.  This is generally a good idea because it avoids causing
consumers of your library to require other .la files listed here to be
available at build time when they're not actually needed (i.e., in the
dynamic linking common case).  It's specifically a good idea right now
because multiarch is imminent, and that means the .la files referenced here
are going to *move* soon, causing build failures for anything using libtool
to build against heartbeat.  As long as heartbeat is going to need a rebuild
to fix up the invalid .la references, it would be nice to get rid of them
altogether.

Thanks,
--
Steve Langasek                   Give me a lever long enough and a Free OS
Debian Developer                   to set it on, and I can move the world.
Ubuntu Developer                                    http://www.debian.org/
slangasek at ubuntu.com                                     vorlon at debian.org
-------------- next part --------------
=== modified file 'debian/rules'
--- debian/rules	2010-12-16 22:53:53 +0000
+++ debian/rules	2011-03-24 23:49:09 +0000
@@ -88,6 +88,9 @@
 	install -c -m 755 heartbeat/init.d/heartbeat \
                 $(DTMP)/etc/init.d/heartbeat
 	cd $(DTMP)/etc/ && ln -s ha.d heartbeat
+	for file in debian/tmp/usr/lib/*.la; do \
+		sed -i "/dependency_libs/ s/'.*'/''/" $$file ; \
+	done
 	
 	dh_install --source=debian/tmp --list-missing
 	



More information about the Debian-ha-maintainers mailing list