The branch, dpkg-shlibdeps-buxy has been updated via d131b99fdb144d62cf93a1f3b2d75de4256d3555 (commit) from ee9f8c8ae478206bda6bdab82256fb309e5d314f (commit)
- Shortlog ------------------------------------------------------------ d131b99 dpkg-shlibdeps: Fix two option regexps Summary of changes: scripts/dpkg-shlibdeps.pl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) ----------------------------------------------------------------------- Details of changes: commit d131b99fdb144d62cf93a1f3b2d75de4256d3555 Author: Frank Lichtenheld <[EMAIL PROTECTED]> Date: Mon Sep 24 19:37:53 2007 +0200 dpkg-shlibdeps: Fix two option regexps regexps -x and -v were missing the starting ^ which could make them match random other stuff, e.g. filenames. diff --git a/scripts/dpkg-shlibdeps.pl b/scripts/dpkg-shlibdeps.pl index 239e00a..5f43586 100755 --- a/scripts/dpkg-shlibdeps.pl +++ b/scripts/dpkg-shlibdeps.pl @@ -69,9 +69,9 @@ foreach (@ARGV) { $ignore_missing_info = 1; } elsif (m/^-t(.*)$/) { $packagetype = $1; - } elsif (m/-v$/) { + } elsif (m/^-v$/) { $debug = 1; - } elsif (m/-x(.*)$/) { + } elsif (m/^-x(.*)$/) { push @exclude, $1; } elsif (m/^-/) { usageerr(sprintf(_g("unknown option \`%s'"), $_)); -- dpkg's main repository -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]