From 3c32cd3884eb9c17d05d088e57fb6b98a4c36d68 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Mon, 24 Mar 2014 18:20:16 +0400 Subject: [PATCH] Move man page to /usr/share/man/, as it should be. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0e239d6e..e008a382 100644 --- a/Makefile +++ b/Makefile @@ -63,9 +63,9 @@ mem.png: mem.dat mem.gp package: rm -rf root/ - mkdir -p root/usr/bin/ root/usr/man/man1/ root/etc/bash_completion.d + mkdir -p root/usr/bin/ root/usr/share/man/man1/ root/etc/bash_completion.d cp $(BINPATH)/aptly root/usr/bin - cp man/aptly.1 root/usr/man/man1 + cp man/aptly.1 root/usr/share/man/man1 (cd root/etc/bash_completion.d && wget https://raw.github.com/aptly-dev/aptly-bash-completion/master/aptly) gzip root/usr/man/man1/aptly.1 fpm -s dir -t deb -n aptly -v $(VERSION) --url=http://www.aptly.info/ --license=MIT --vendor="Andrey Smirnov " \