From b4455771cced2fe9f134e751fe88dbba7226e694 Mon Sep 17 00:00:00 2001 From: Jeremy Lea Date: Mon, 17 Apr 2000 00:19:02 +0000 Subject: 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 --- misc/gone/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'misc/gone') 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 -- cgit v1.2.3