]> git.donarmstrong.com Git - debhelper.git/commitdiff
r469: * Missing semi-colon.
authorjoey <joey>
Tue, 15 May 2001 14:28:42 +0000 (14:28 +0000)
committerjoey <joey>
Tue, 15 May 2001 14:28:42 +0000 (14:28 +0000)
   * Call dh_shlibdeps as part of build process, as simple guard against
     this (dh_* should be called, really).

debian/changelog
debian/rules
dh_shlibdeps

index 2d6115fb76ee4dd5679f2afa58092a4e6a4678e1..7017569594b7b5eae7789fb18a40568b2a7fe56b 100644 (file)
@@ -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 <joeyh@debian.org>  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
index bc83ec50265210ce5ec7660714a502b49197ff6c..9ec7d17c2619c86621e38d0316b0d18ef509e8d3 100755 (executable)
@@ -91,6 +91,7 @@ binary-indep: build
        ./dh_installman *.1
        ./dh_installinfo
        ./dh_installchangelogs
+       ./dh_shlibdeps
        ./dh_link
        ./dh_compress
        ./dh_fixperms
index ebba4746a26132858ae87564b6b9451603863538..274aeeda027a93e51c388f4a498de3a20b2ce3cc 100755 (executable)
@@ -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:^/:) {