summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Beckmann <anbe@debian.org>2014-05-23 17:03:24 +0200
committerAndreas Beckmann <anbe@debian.org>2014-05-23 17:03:24 +0200
commit66317a7657accfcc7821c81e612e8cd39a7433f1 (patch)
treeaeea0f7bb5666f7e6cf9f47ab2a32bb3f689ca5b
parentfc368946b99ffb9d5d8b0988bb4ece86332a7bca (diff)
downloadsendmail-66317a7657accfcc7821c81e612e8cd39a7433f1.tar.gz
rename manpages inside debian/tmp
-rwxr-xr-xdebian/rules26
1 files changed, 13 insertions, 13 deletions
diff --git a/debian/rules b/debian/rules
index 9d7f1e9..eed85ff 100755
--- a/debian/rules
+++ b/debian/rules
@@ -377,21 +377,21 @@ common-install-arch::
# yeah, yeah, I know... these can be done with -b<flag>!
(cd ${PKG_DIR}${bindir} && \
$(RM) hoststat mailq newaliases purgestat smtpd;)
- # Handle man pages for these aliases
- mv ${PKG_DIR}${mandir}/man5/aliases.5 \
- ${PKG_DIR}${mandir}/man5/aliases.sendmail.5;
- mv ${PKG_DIR}${mandir}/man1/mailq.1 \
- ${PKG_DIR}${mandir}/man1/mailq.sendmail.1;
- mv ${PKG_DIR}${mandir}/man1/newaliases.1 \
- ${PKG_DIR}${mandir}/man8/newaliases.sendmail.8;
- mv ${PKG_DIR}${mandir}/man8/sendmail.8 \
- ${PKG_DIR}${mandir}/man8/sendmail.sendmail.8
+ # Handle man pages for the sendmail aliases
+ mv ${PKG_TMP}${mandir}/man5/aliases.5 \
+ ${PKG_TMP}${mandir}/man5/aliases.sendmail.5
+ mv ${PKG_TMP}${mandir}/man1/mailq.1 \
+ ${PKG_TMP}${mandir}/man1/mailq.sendmail.1
+ mv ${PKG_TMP}${mandir}/man1/newaliases.1 \
+ ${PKG_TMP}${mandir}/man8/newaliases.sendmail.8
+ mv ${PKG_TMP}${mandir}/man8/sendmail.8 \
+ ${PKG_TMP}${mandir}/man8/sendmail.sendmail.8
# Special handling of vacation - Debian has a seperate package
# with a different version (sigh) keep our copy just in case...
- mv ${PKG_DIR}${libexecdir}/vacation \
- ${PKG_DIR}${libexecdir}/vacation.sendmail; \
- mv ${PKG_DIR}${mandir}/man1/vacation.1 \
- ${PKG_DIR}${mandir}/man1/vacation.sendmail.1; \
+ mv ${PKG_TMP}${libexecdir}/vacation \
+ ${PKG_TMP}${libexecdir}/vacation.sendmail
+ mv ${PKG_TMP}${mandir}/man1/vacation.1 \
+ ${PKG_TMP}${mandir}/man1/vacation.sendmail.1
#--------------------------------------------------------------------