From: Peter van Dijk Date: Thu, 27 Jun 2013 10:58:42 +0000 (+0200) Subject: move dnstcpbench.1 to tools deb X-Git-Tag: auth-3.3-rc2^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f76e367acc7f21fa421ebcff9926c7d349cf44f4;p=thirdparty%2Fpdns.git move dnstcpbench.1 to tools deb --- diff --git a/debian-pdns/rules b/debian-pdns/rules index 3b56060c8a..02598ac792 100755 --- a/debian-pdns/rules +++ b/debian-pdns/rules @@ -121,6 +121,8 @@ binary-main-prepare: "$(tools_tmpdir)"/usr/bin install -d -m 755 -o root -g root \ "$(tools_tmpdir)"/usr/share/man/man8 + install -d -m 755 -o root -g root \ + "$(tools_tmpdir)"/usr/share/man/man1 install -d -m 755 -o root -g root \ "$(tools_tmpdir)"/usr/share/doc/pdns-tools install -p -m 644 -o root -g root debian-pdns/changelog \ @@ -131,12 +133,13 @@ binary-main-prepare: install -d -m 755 -o root -g root "$(tools_tmpdir)"/DEBIAN + #FIXME: shell loops hide errors for prog in dnsbulktest dnsreplay dnsscan dnsscope dnstcpbench dnswasher nproxy nsec3dig ; do \ mv "$(tmpdir)"/usr/bin/$$prog "$(tools_tmpdir)"/usr/bin ; \ [ -e "$(tmpdir)"/usr/share/man/man8/"$$prog".8 ] && \ mv "$(tmpdir)"/usr/share/man/man8/"$$prog".8 "$(tools_tmpdir)"/usr/share/man/man8/ ; \ - [ -e "$(tmpdir)"/usr/share/man/man8/"$$prog".1 ] && \ - mv "$(tmpdir)"/usr/share/man/man8/"$$prog".1 "$(tools_tmpdir)"/usr/share/man/man1/ ; \ + [ -e "$(tmpdir)"/usr/share/man/man1/"$$prog".1 ] && \ + mv "$(tmpdir)"/usr/share/man/man1/"$$prog".1 "$(tools_tmpdir)"/usr/share/man/man1/ ; \ strip --remove-section=.comment --remove-section=.note \ --strip-unneeded \ "$(tools_tmpdir)"/usr/bin/"$$prog" ; \