diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2005-04-23 17:42:52 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2005-04-23 17:42:52 +0000 |
commit | b517e41b1b26c890e732982293f3925ab484af47 (patch) | |
tree | 80a62bbd5a963750d70f14f97518fe040dc37df1 /news | |
parent | - Fix pkg-plist to unbreak the port (diff) |
Due to a misuse of a make(1) command, the WITHOUT_INN_2-X
switch was being completely ignored. This fixes that. I'm
bumping PORTREVISION here because a rebuild could potentially
cause a new dependency list and a different output binary.
Notes
Notes:
svn path=/head/; revision=134013
Diffstat (limited to 'news')
-rw-r--r-- | news/newsx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/news/newsx/Makefile b/news/newsx/Makefile index efe26292380b..938c08b8e575 100644 --- a/news/newsx/Makefile +++ b/news/newsx/Makefile @@ -7,7 +7,7 @@ PORTNAME= newsx PORTVERSION= 1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= news MASTER_SITES= ftp://ftp.kvaleberg.com/pub/ @@ -16,7 +16,7 @@ COMMENT= A program to fetch news from and post news to a remote NNTP server .if defined(WITH_CNEWS) BUILD_DEPENDS= ${LOCALBASE}/news/lib/libcnews.a:${PORTSDIR}/news/cnews -.else !defined(WITHOUT_INN_2-X) +.elif !defined(WITHOUT_INN_2-X) BUILD_DEPENDS= ${LOCALBASE}/news/lib/libinn.a:${PORTSDIR}/news/inn .endif |