diff options
author | shaun <shaun@FreeBSD.org> | 2006-11-06 07:08:55 +0800 |
---|---|---|
committer | shaun <shaun@FreeBSD.org> | 2006-11-06 07:08:55 +0800 |
commit | 2db0b014b696208496d13bee5f28dc7c23c25431 (patch) | |
tree | 2f1836ee2da30cac6dba5caf5418edfe02d9aae2 /news | |
parent | 446204dbc710d008ac7ba2eac7f4240b03f6c9ae (diff) | |
download | freebsd-ports-gnome-2db0b014b696208496d13bee5f28dc7c23c25431.tar.gz freebsd-ports-gnome-2db0b014b696208496d13bee5f28dc7c23c25431.tar.zst freebsd-ports-gnome-2db0b014b696208496d13bee5f28dc7c23c25431.zip |
- 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
Diffstat (limited to 'news')
-rw-r--r-- | news/inn/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index 0b0ee24ec665..d56aac290b3c 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 \ |