diff options
author | Shaun Amott <shaun@FreeBSD.org> | 2006-11-05 23:08:55 +0000 |
---|---|---|
committer | Shaun Amott <shaun@FreeBSD.org> | 2006-11-05 23:08:55 +0000 |
commit | 7073505859d83b37404f65c94efe068a5e5e6247 (patch) | |
tree | 59536ac532ae802e3b511b5e1acce90915ae23fd /news | |
parent | fd7e0816dab350de58aaeb897f86f5041eea22be (diff) | |
download | ports-7073505859d83b37404f65c94efe068a5e5e6247.tar.gz ports-7073505859d83b37404f65c94efe068a5e5e6247.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
Notes
Notes:
svn path=/head/; revision=176559
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 \ |