diff options
author | bapt <bapt@FreeBSD.org> | 2013-12-17 06:02:32 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-12-17 06:02:32 +0800 |
commit | 415b87677041e6b4681bfedff962dfd39439a19a (patch) | |
tree | 4c9aa510a341649573192b0b2ae9f820c72e6856 | |
parent | 5bec478ddf547dfac784941f1b7eb68ef98e56c0 (diff) | |
download | freebsd-ports-gnome-415b87677041e6b4681bfedff962dfd39439a19a.tar.gz freebsd-ports-gnome-415b87677041e6b4681bfedff962dfd39439a19a.tar.zst freebsd-ports-gnome-415b87677041e6b4681bfedff962dfd39439a19a.zip |
Fix another useless and redundant test that is now broken
Reported by: Peter Looyenga <pl@catslair.org>, jhellenthal@dataix.net
-rw-r--r-- | security/tripwire/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/tripwire/Makefile b/security/tripwire/Makefile index 35bd41b5a2ac..ae8492b193f8 100644 --- a/security/tripwire/Makefile +++ b/security/tripwire/Makefile @@ -119,7 +119,7 @@ install-config-files: .ifdef PACKAGE_BUILDING @ cd ${WRKSRC} && PREFIX=${PREFIX} TW_CLOBBER=${TW_CLOBBER} DO_NOT_CONFIG="yes" TW_PROMPT="false" ${GMAKE} install-data-hook .else -.if ${PORT_OPTIONS:MSW_ONLY} && ${WITH_SW_ONLY} == "true" +.if ${PORT_OPTIONS:MSW_ONLY} @ cd ${WRKSRC} && PREFIX=${PREFIX} TW_CLOBBER=${TW_CLOBBER} DO_NOT_CONFIG="yes" TW_PROMPT="false" ${GMAKE} install-data-hook .else @ cd ${WRKSRC} && PREFIX=${PREFIX} TW_CLOBBER=${TW_CLOBBER} TW_PROMPT=${TW_PROMPT} ${GMAKE} install-data-hook |