diff options
author | Niels Thykier <niels@thykier.net> | 2016-10-02 20:11:34 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2016-10-02 20:11:37 +0000 |
commit | dbdad391cc62fc92f54d8f9eab1f4bc68c1073cb (patch) | |
tree | 3a9a8a913bbef2549e0b40b089cbb43179ab90a6 /dh_installdocs | |
parent | 56e7dc4f2a6b47007364ec7f4e3dee1eba2f21c8 (diff) | |
download | debhelper-dbdad391cc62fc92f54d8f9eab1f4bc68c1073cb.tar.gz |
Refactor install_dir usage to avoid the "if -d " tests
They were not needed in the first place (as "install -d" DTRT).
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_installdocs')
-rwxr-xr-x | dh_installdocs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dh_installdocs b/dh_installdocs index 935d7240..9c82b5b4 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -325,9 +325,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { closedir(DEB); if (%doc_ids) { - if (! -d "$tmp/usr/share/doc-base/") { - install_dir("$tmp/usr/share/doc-base/"); - } + install_dir("$tmp/usr/share/doc-base/"); } # check for duplicate document ids my %used_doc_ids; |