aboutsummaryrefslogtreecommitdiffstats
path: root/lang/fpc-units
diff options
context:
space:
mode:
authoracm <acm@FreeBSD.org>2009-01-16 20:41:45 +0800
committeracm <acm@FreeBSD.org>2009-01-16 20:41:45 +0800
commitbecd3f1261a5088c1a535b915f9a8d97bb86e89f (patch)
tree9903270e9dfc69d3a9d5075d14f5642a01d3c3db /lang/fpc-units
parent944a97ac1b426bb8c5a8a203340ad63ed6435c71 (diff)
downloadfreebsd-ports-gnome-becd3f1261a5088c1a535b915f9a8d97bb86e89f.tar.gz
freebsd-ports-gnome-becd3f1261a5088c1a535b915f9a8d97bb86e89f.tar.zst
freebsd-ports-gnome-becd3f1261a5088c1a535b915f9a8d97bb86e89f.zip
- Fix the logic with the options selected
- Bump PORTREVISION PR: 130613 Submitted by: bsam
Diffstat (limited to 'lang/fpc-units')
-rw-r--r--lang/fpc-units/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/fpc-units/Makefile b/lang/fpc-units/Makefile
index aa14e86eed44..b19a9b62816e 100644
--- a/lang/fpc-units/Makefile
+++ b/lang/fpc-units/Makefile
@@ -7,6 +7,7 @@
PORTNAME= units
PORTVERSION= 2.2.2
+PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= # none
PKGNAMEPREFIX= fpc-
@@ -85,7 +86,7 @@ ALL_OPTIONS= ASPELL BFD CAIRO CHM FCL-ASYNC FCL-BASE FCL-DB FCL-FPCUNIT FCL-IMAG
UNITS_SELECTED= #
.for OPT in ${ALL_OPTIONS}
-. if defined(WITH_${OPT}) && !defined(WITHOUT_${OPT})
+. if defined(WITH_${OPT}) || !defined(WITHOUT_${OPT})
UNITS_SELECTED+= ${OPT:L}
. endif
.endfor