]> git.donarmstrong.com Git - debhelper.git/commitdiff
r405: foo
authorjoey <joey>
Sat, 30 Dec 2000 06:32:16 +0000 (06:32 +0000)
committerjoey <joey>
Sat, 30 Dec 2000 06:32:16 +0000 (06:32 +0000)
debian/changelog
dh_shlibdeps
dh_shlibdeps.1

index 3e7c54e4aa02205b9efd2531b243e358364cd504..1a52490d8f3f81e18a76ef2ac70c45351c4c66b6 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (2.2.10) unstable; urgency=low
+
+  * dh_shlibdeps: re-enabled -l flag, it's needed again. Closes: #80560
+
+ -- Joey Hess <joey@kitenet.net>  Tue, 26 Dec 2000 22:05:30 -0800
+
 debhelper (2.2.9) unstable; urgency=low
 
   * Fixed perl wanring, Closes: #80242
index 0456a2dc588082dcce414de73fea55630379ef79..237d92db5a0dbb648fd1e7819dc86df1ce6643f1 100755 (executable)
@@ -29,6 +29,10 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        }
 
        if (@filelist) {
+               if ($dh{L_PARAMS}) {
+                       $ENV{'LD_LIBRARY_PATH'}=$dh{L_PARAMS};
+                       verbose_print("LD_LIBRARY_PATH=$dh{L_PARAMS} \\");
+               }
                doit("dpkg-shlibdeps","-Tdebian/${EXT}substvars",@{$dh{U_PARAMS}},'-dDepends',@filelist);
        }
 }
index 6ced958ca1dbe3f1af89b9f607d7a6c0e56d61d0..d09967a9628fb53731919b58474f622e5d709e3e 100644 (file)
@@ -3,7 +3,7 @@
 dh_shlibdeps \- calculate shared library dependancies
 .SH SYNOPSIS
 .B dh_shlibdeps
-.I "[debhelper options] [-uparams] [-Xitem] [-- params]"
+.I "[debhelper options] [-ldirectory] [-uparams] [-Xitem] [-- params]"
 .SH "DESCRIPTION"
 dh_shlibdeps is a debhelper program that is responsible for calculating
 shared library dependancies for packages.
@@ -32,7 +32,13 @@ This may be useful in some situations, but use it with caution. This option
 may be used more than once to exclude more than one thing.
 .TP
 .B \-ldirectory
-This option is ignored, for backwards compatability.
+Before
+.BR dpkg-shlibdeps (1)
+is run, LD_LIBRARY_PATH will be set to the specified directory.
+This is useful for multi-binary packages where a library
+is built in one package and another package contains binaries linked
+against said library. Note that the paths used must be absolute or
+dpkg-shlibdeps will become confused.
 .SH ENVIRONMENT
 See
 .BR debhelper (1)