summaryrefslogtreecommitdiff
path: root/dh_shlibdeps
diff options
context:
space:
mode:
authorjoey <joey>1999-11-04 23:51:29 +0000
committerjoey <joey>1999-11-04 23:51:29 +0000
commitce53cf82751a1711e02152b25ac2f14810e0e020 (patch)
tree6a72250edd27229e15528f0f7021b2e7d1bd6d77 /dh_shlibdeps
parent067a26d8a40fa40003e0c9b2dfbfa76af71bf59e (diff)
r302: * dh_shlibdeps: added -l option, which lets you specify a path that
LD_LIBRARY_PATH is then set to when dpkg-shlibdeps is run. This should make it easier for library packages that also build binary packages to be built with correct dependancies. Closes: #36751 * In honor of Burn all GIFs Day (hi Don!), I added alternative image formats .png, .jpg (and .jpeg) to the list of extentions dh_compress does not compress. Closes: #41733 * Also, made all extentions dh_compress skips be looked at case insensitively. * dh_movefiles: force owner and group of installed files to be root. Closes: #46039 * Closes: #42650, #47175 -- they've been fixed forever.
Diffstat (limited to 'dh_shlibdeps')
-rwxr-xr-xdh_shlibdeps4
1 files changed, 4 insertions, 0 deletions
diff --git a/dh_shlibdeps b/dh_shlibdeps
index 1268fa4a..3fec714c 100755
--- a/dh_shlibdeps
+++ b/dh_shlibdeps
@@ -22,6 +22,10 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
}
}
+ if ($dh{L_PARAMS}) {
+ $ENV{'LD_LIBRARY_PATH'}=$dh{L_PARAMS}
+ }
+
if (@filelist) {
doit("dpkg-shlibdeps","-Tdebian/$EXT\substvars",@{$dh{U_PARAMS}},@filelist);
}