summaryrefslogtreecommitdiff
path: root/misc/gone
diff options
context:
space:
mode:
authorJeremy Lea <reg@FreeBSD.org>2000-04-17 00:19:02 +0000
committerJeremy Lea <reg@FreeBSD.org>2000-04-17 00:19:02 +0000
commitb4455771cced2fe9f134e751fe88dbba7226e694 (patch)
tree39733bef5e1d466d30938b5a47f0b46a7b6890b4 /misc/gone
parentStandardize all user defined options to the booleans WITH_FOO and (diff)
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
Notes
Notes: svn path=/head/; revision=27680
Diffstat (limited to 'misc/gone')
-rw-r--r--misc/gone/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/gone/Makefile b/misc/gone/Makefile
index 254c518c74c9..4eb6e6537497 100644
--- a/misc/gone/Makefile
+++ b/misc/gone/Makefile
@@ -20,10 +20,10 @@ GNU_CONFIGURE= yes
# override this with WITH_SETUID=yes in your environment.
# Be aware that setting gone to suid MAY be a security hole.
#
-WITH_SETUID?= no
-.if ${WITH_SETUID} == yes
-CONFIGURE_ENV= with_setuid=yes
+.if defined(WITH_SETUID)
+CONFIGURE_ENV= with_setuid=yes
.else
-CONFIGURE_ENV= with_setuid=no
+CONFIGURE_ENV= with_setuid=no
.endif
+
.include <bsd.port.mk>