Your message dated Sun, 3 Apr 2011 15:58:15 +0200
with message-id <[email protected]>
and subject line Re: Bug#620604: libinfinity: please wipe out dependency_libs
from .la files (Policy 10.2)
has caused the Debian Bug report #620604,
regarding libinfinity: please wipe out dependency_libs from .la files (Policy
10.2)
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
620604: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=620604
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libinfinity
Version: 0.4.1-4
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu natty ubuntu-patch
Hi Phil,
Here's another one...
The attached patch has just been applied to the Ubuntu libinfinity package,
to null out the dependency_libs field in the libtool .la file 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 libinfinity. As long as libinfinity 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/
[email protected] [email protected]
diff -Nru libinfinity-0.4.1/debian/rules libinfinity-0.4.1/debian/rules
--- libinfinity-0.4.1/debian/rules 2010-07-29 10:38:43.000000000 -0700
+++ libinfinity-0.4.1/debian/rules 2011-04-02 18:11:45.000000000 -0700
@@ -36,3 +36,9 @@
dh_makeshlibs -Xlibinfd-note-plugin-text.so
binary: binary-arch binary-indep
+
+override_dh_auto_install:
+ dh_auto_install
+ for file in debian/tmp/usr/lib/*.la; do \
+ sed -i "/dependency_libs/ s/'.*'/''/" $$file ; \
+ done
--- End Message ---
--- Begin Message ---
Version: 0.4.2-2
Hi Steve,
On Sat, Apr 02, 2011 at 06:14:27PM -0700, Steve Langasek wrote:
> Here's another one...
this was already fixed in 0.4.2-2 by not installing the .la.
Kind regards
Philipp Kern
signature.asc
Description: Digital signature
--- End Message ---