diff options
author | Niels Thykier <niels@thykier.net> | 2017-12-31 17:06:41 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2017-12-31 17:06:41 +0000 |
commit | 7eb6444b4285a14bc3dd54798fd8d9f0990b0ef8 (patch) | |
tree | 49f3aa3f4b4a6652d50988c33ca339b8064be44d | |
parent | 4e37535cac6949ca0a3ddfbbc34cb3ac989cbf70 (diff) | |
download | debhelper-7eb6444b4285a14bc3dd54798fd8d9f0990b0ef8.tar.gz |
dh_makehshlibs: Fix typo in verbose message
Signed-off-by: Niels Thykier <niels@thykier.net>
-rwxr-xr-x | dh_makeshlibs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_makeshlibs b/dh_makeshlibs index 143ed53a..a791af9a 100755 --- a/dh_makeshlibs +++ b/dh_makeshlibs @@ -237,7 +237,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } elsif (@deb_lines or @udeb_lines) { install_dir("$tmp/DEBIAN"); if ($dh{VERBOSE}) { - verbose_print('echo ' . escape_shell($_) . ' ' . escape_shell("$tmp/DEBIAN/shlibs")) + verbose_print('echo ' . escape_shell($_) . ' >> ' . escape_shell("$tmp/DEBIAN/shlibs")) for @deb_lines, @udeb_lines; } open(my $shlibs_fd, '>', "$tmp/DEBIAN/shlibs") or error("open($tmp/DEBIAN/shlibs): $!"); |