]> git.donarmstrong.com Git - debhelper.git/commitdiff
dh_shlibdeps: Warn if -V flag is passed, to avoid it accidentially being used here...
authorJoey Hess <joey@kitenet.net>
Thu, 5 Jul 2012 14:51:40 +0000 (08:51 -0600)
committerJoey Hess <joey@kitenet.net>
Thu, 5 Jul 2012 14:51:40 +0000 (08:51 -0600)
debian/changelog
dh_shlibdeps

index 0bb44d67755976525758c5eab4409ad64a95a540..de98ea7dd8ec4846c1e6af8b6f3cde0f69b3adcb 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (9.20120609) UNRELEASED; urgency=low
+
+  * dh_shlibdeps: Warn if -V flag is passed, to avoid it accidentially being
+    used here rather than in dh_makeshlibs.
+
+ -- Joey Hess <joeyh@debian.org>  Thu, 05 Jul 2012 08:51:07 -0600
+
 debhelper (9.20120608) unstable; urgency=low
 
   * dh: When there's an -indep override target without -arch, or vice versa,
index e941af6cabd204379317180c8180638f96daae3f..a41732fcee1678c9c5a1814334760e2cf25f96f8 100755 (executable)
@@ -111,6 +111,10 @@ if ($dh{L_PARAMS}) {
        $dh{L_PARAMS}=join(':', @paths);
 }
 
+if (defined $dh{V_FLAG}) {
+       warning("You probably wanted to pass -V to dh_makeshlibs, it has no effect on dh_shlibdeps");
+}
+
 foreach my $package (@{$dh{DOPACKAGES}}) {
        my $tmp=tmpdir($package);
        my $ext=pkgext($package);