From: joey Date: Tue, 15 May 2001 14:28:42 +0000 (+0000) Subject: r469: * Missing semi-colon. X-Git-Tag: version_2.0.101~130 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e03b78fce8442511e125cc57922267578d07fa29;p=debhelper.git r469: * Missing semi-colon. * Call dh_shlibdeps as part of build process, as simple guard against this (dh_* should be called, really). --- diff --git a/debian/changelog b/debian/changelog index 2d6115f..7017569 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +debhelper (3.0.24) unstable; urgency=low + + * Missing semi-colon. + * Call dh_shlibdeps as part of build process, as simple guard against + this (dh_* should be called, really). + + -- Joey Hess Tue, 15 May 2001 10:27:34 -0400 + debhelper (3.0.23) unstable; urgency=low * dh_shlibdeps: the -l switch now just adds to LD_LIBRARY_PATH, if it is diff --git a/debian/rules b/debian/rules index bc83ec5..9ec7d17 100755 --- a/debian/rules +++ b/debian/rules @@ -91,6 +91,7 @@ binary-indep: build ./dh_installman *.1 ./dh_installinfo ./dh_installchangelogs + ./dh_shlibdeps ./dh_link ./dh_compress ./dh_fixperms diff --git a/dh_shlibdeps b/dh_shlibdeps index ebba474..274aeed 100755 --- a/dh_shlibdeps +++ b/dh_shlibdeps @@ -81,7 +81,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my @paths=(); # Add to existing paths, if set. push @paths, $ENV{'LD_LIBRARY_PATH'} - if exists $ENV{'LD_LIBRARY_PATH'} + if exists $ENV{'LD_LIBRARY_PATH'}; foreach (split(/:/, $dh{L_PARAMS})) { # Force the path absolute. if (m:^/:) {