summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-10-04 21:49:32 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-10-04 21:49:32 +0800
commit897ed7125bd1b2618c762cb437da63f2c7b7aa8b (patch)
tree231b1f5f2aa1c62ed5cd824341fba880ac4e6992
parent459d2591857d4e96f55165965b6c6014880bd12e (diff)
Fix debian installation of manpages
-rw-r--r--LICENSE2
-rwxr-xr-xdebian/rules8
2 files changed, 5 insertions, 5 deletions
diff --git a/LICENSE b/LICENSE
index ba11d4f..65af084 100644
--- a/LICENSE
+++ b/LICENSE
@@ -8,7 +8,7 @@ The majority of code is written by Matt Johnston, under the license below.
Portions of the client-mode work are (c) 2004 Mihnea Stoenescu, under the
same license:
-Copyright (c) 2002-2008 Matt Johnston
+Copyright (c) 2002-2013 Matt Johnston
Portions copyright (c) 2004 Mihnea Stoenescu
All rights reserved.
diff --git a/debian/rules b/debian/rules
index 605754e..e1a4b7a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -79,12 +79,12 @@ install: deb-checkdir deb-checkuid build-stamp
ln -s /var/log/dropbear '$(DIR)'/etc/dropbear/log/main
# man pages
install -d -m0755 '$(DIR)'/usr/share/man/man8
- for i in dropbear.8 dropbearkey.8; do \
- install -m644 $$i '$(DIR)'/usr/share/man/man8/ || exit 1; \
+ install -d -m0755 '$(DIR)'/usr/share/man/man1
+ install -m644 dropbear.8 '$(DIR)'/usr/share/man/man8/
+ for i in dbclient.1 dropbearkey.1 dropbearconvert.1; do \
+ install -m644 $$i '$(DIR)'/usr/share/man/man1/ || exit 1; \
done
gzip -9 '$(DIR)'/usr/share/man/man8/*.8
- install -d -m0755 '$(DIR)'/usr/share/man/man1
- install -m644 dbclient.1 '$(DIR)'/usr/share/man/man1/
gzip -9 '$(DIR)'/usr/share/man/man1/*.1
# copyright, changelog
cat debian/copyright.in LICENSE >debian/copyright