From 2db0b014b696208496d13bee5f28dc7c23c25431 Mon Sep 17 00:00:00 2001 From: shaun Date: Sun, 5 Nov 2006 23:08:55 +0000 Subject: - Fix PLIST for inn-current. - Check files exist before stripping, as strip(1) on 4.x fails if the file isn't there. Reported by: pointyhat via kris --- news/inn/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'news') diff --git a/news/inn/Makefile b/news/inn/Makefile index 0b0ee24..d56aac2 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -162,7 +162,7 @@ MAN8= actsync.8 archive.8 auth_smb.8 batcher.8 buffchan.8 \ MAN1+= startinnfeed.1 MAN3+= parsedate.3 MAN5+= sasl.conf.5 -MAN8+= actsyncd.8 inndstart.8 +MAN8+= actsyncd.8 inndstart.8 innbind.8 tinyleaf.8 PLIST_SUB+= NOTCURRENT="" .else PLIST_SUB+= NOTCURRENT="@comment " @@ -222,7 +222,7 @@ post-build: post-install: .if !defined(WITHOUT_STRIP) . for FILE in ${TO_BE_STRIPPED} - ${STRIP_CMD} ${INN_NEWSBASE}/${FILE} + @[ -e ${INN_NEWSBASE}/${FILE} ] && ${STRIP_CMD} ${INN_NEWSBASE}/${FILE} . endfor .endif ${CHOWN} ${MANOWN}:${MANGRP} ${PREFIX}/man ${PREFIX}/man/man1 ${PREFIX}/man/man3 \ -- cgit v1.1