diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | b4455771cced2fe9f134e751fe88dbba7226e694 (patch) | |
tree | 39733bef5e1d466d30938b5a47f0b46a7b6890b4 /misc/gone | |
parent | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (diff) |
Notes
Diffstat (limited to 'misc/gone')
-rw-r--r-- | misc/gone/Makefile | 8 |
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> |