diff options
author | joey <joey> | 2001-11-17 21:01:33 +0000 |
---|---|---|
committer | joey <joey> | 2001-11-17 21:01:33 +0000 |
commit | 2d76f9e8cf76146e7b24ac4232918f584cfb8a16 (patch) | |
tree | 0d68cc6e0a8f3be71b0f3e45d4c5177a564fa189 /dh_installman | |
parent | da77014a9f5c7467c47e527e70a7fb8c433595c7 (diff) | |
download | debhelper-2d76f9e8cf76146e7b24ac4232918f584cfb8a16.tar.gz |
r495: * dh_undocumented: check for existing uncompressed man pages. Closes: #87972
* Optimized dh_installdeb conffile finding. Closes: #119035
* dh_installdeb: changed the #!/bin/sh -e to set -e on a new line. Whether
this additional bloat is worth it to make it easier for people to sh -x
a script by hand is debatable either way, I guess. Closes: #119046
* Added a check for duplicated package stanzas in debian/control,
Closes: #118805
Diffstat (limited to 'dh_installman')
-rwxr-xr-x | dh_installman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installman b/dh_installman index c5efe70c..a01f63d1 100755 --- a/dh_installman +++ b/dh_installman @@ -165,7 +165,7 @@ sub find_so_man { } # Test first line of file for the .so thing. - open (SOTEST,$_); + open (SOTEST,$_) || die "$_: $!"; my $l=<SOTEST>; close SOTEST; if ($l=~m/\.so\s+(.*)/) { |