This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=b1898b812b71f64082107d4e2f98ccf020d18b70 The following commit(s) were added to refs/heads/main by this push: new b1898b812 dpkg-fsys-usrunmess: Do not interpolate string b1898b812 is described below commit b1898b812b71f64082107d4e2f98ccf020d18b70 (HEAD -> main) Author: Guillem Jover <[email protected]> AuthorDate: Tue Mar 29 02:46:53 2022 +0200 dpkg-fsys-usrunmess: Do not interpolate string Fixes: commit 48e33c40691596b3bf91b86b50a8aa164b585639 Changelog: silent --- scripts/dpkg-fsys-usrunmess.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dpkg-fsys-usrunmess.pl b/scripts/dpkg-fsys-usrunmess.pl index 526bf2297..3cb6a6f9b 100755 --- a/scripts/dpkg-fsys-usrunmess.pl +++ b/scripts/dpkg-fsys-usrunmess.pl @@ -155,7 +155,7 @@ foreach my $dir (@aliased_dirs) { # complement when looking for untracked kernel module files under aliased # dirs. my %usr_mod_pathnames; -push @search_args, "/usr/lib/modules/*"; +push @search_args, '/usr/lib/modules/*'; open my $fh_paths, '-|', 'dpkg-query', '--search', @search_args or fatal("cannot execute dpkg-query --search: $!"); -- Dpkg.Org's dpkg

