diff options
author | adamw <adamw@FreeBSD.org> | 2005-04-24 01:42:52 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2005-04-24 01:42:52 +0800 |
commit | e29384e7be4abd4d375be42d3bf68078daec48ea (patch) | |
tree | 9318e78df42cc8bbf0808a6dfbbd9629c3d8dd2c /news/newsx | |
parent | b0254358f38e851bbf342c5a8a47c4b92680a2b1 (diff) | |
download | freebsd-ports-graphics-e29384e7be4abd4d375be42d3bf68078daec48ea.tar.gz freebsd-ports-graphics-e29384e7be4abd4d375be42d3bf68078daec48ea.tar.zst freebsd-ports-graphics-e29384e7be4abd4d375be42d3bf68078daec48ea.zip |
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.
Diffstat (limited to 'news/newsx')
-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 efe26292380..938c08b8e57 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 |