Package: vdkxdb2
Severity: normal
Hi,
attached to this response is a patch with the
proposed fix to this bug.
The patch makes the following changes:
* debian/rules: On install target, dependency_libs field of .la files
is cleared (Closes: #633340)
Thanks for considering my patch.
-- System Information:
Debian Release: 6.0.2
APT prefers stable-updates
APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru vdkxdb2-2.4.0/debian/changelog vdkxdb2-2.4.0/debian/changelog
--- vdkxdb2-2.4.0/debian/changelog 2011-02-20 12:26:08.000000000 -0300
+++ vdkxdb2-2.4.0/debian/changelog 2011-07-17 20:28:32.000000000 -0300
@@ -1,3 +1,11 @@
+vdkxdb2 (2.4.0-3.3) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * debian/rules: On install target, dependency_libs field of .la files
+ is cleared (Closes: #633340)
+
+ -- Sebastian Carneiro <[email protected]> Sun, 17 Jul 2011 20:27:11 -0300
+
vdkxdb2 (2.4.0-3.2) unstable; urgency=low
* Non-maintainer upload.
diff -Nru vdkxdb2-2.4.0/debian/rules vdkxdb2-2.4.0/debian/rules
--- vdkxdb2-2.4.0/debian/rules 2011-02-20 12:25:39.000000000 -0300
+++ vdkxdb2-2.4.0/debian/rules 2011-07-17 21:59:19.000000000 -0300
@@ -15,3 +15,7 @@
override_dh_auto_build:
make docs
dh_auto_build
+
+override_dh_auto_install:
+ dh_auto_install
+ DESTDIR=`pwd`/debian sed -i "/dependency_libs/ s/'.*'/''/" `find ${DESTDIR} -name '*.la'`