diff options
author | bapt <bapt@FreeBSD.org> | 2013-12-16 15:30:28 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-12-16 15:30:28 +0800 |
commit | 826a55d1f1bf275aece053eeea4b112b59b4ef6a (patch) | |
tree | a5786a2869770e656d28731eb615ef405d01f160 /security | |
parent | 09a26309e509935bc85c270d586d5355efaf5058 (diff) | |
download | freebsd-ports-gnome-826a55d1f1bf275aece053eeea4b112b59b4ef6a.tar.gz freebsd-ports-gnome-826a55d1f1bf275aece053eeea4b112b59b4ef6a.tar.zst freebsd-ports-gnome-826a55d1f1bf275aece053eeea4b112b59b4ef6a.zip |
Remove redondant variable testing which are now irrelevant
with this part of the compatibility with the old framework being removed
Diffstat (limited to 'security')
-rw-r--r-- | security/tripwire/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/tripwire/Makefile b/security/tripwire/Makefile index e76ba28cd416..35bd41b5a2ac 100644 --- a/security/tripwire/Makefile +++ b/security/tripwire/Makefile @@ -161,8 +161,8 @@ make-pkg-install: @ ${SED} "/^\. /s/^/: /;/^BASE_DIR=/d;s/BIN_DIR=/: BIN_DIR=/;/^POLICYSRC/d" ${WRKSRC}/install/install.sh >> ${PKGINSTALL} create-database: -.if ${PORT_OPTIONS:MDB_BUILD} && ${WITH_DB_BUILD} == "true" -.if ${PORT_OPTIONS:MSW_ONLY} && ${WITH_SW_ONLY} == "true" +.if ${PORT_OPTIONS:MDB_BUILD} +.if ${PORT_OPTIONS:MSW_ONLY} @ ${ECHO} SW_ONLY has been specified, database will not be built. .else @ ${MKDIR} ${TWCFG} ${TWPOLICY} ${TWSITEKEYDIR} ${TWLOCALKEYDIR} \ |