diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
commit | 8b766534122d71052c9f8e5a0752944edf0450f8 (patch) | |
tree | 255862bd3b0c32802317a9ddc3193fd714753916 /editors/elvis | |
parent | e0c8ef49d897de0719277097a1e6578f291f493e (diff) | |
download | freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.gz freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.zst freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.zip |
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
Diffstat (limited to 'editors/elvis')
-rw-r--r-- | editors/elvis/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/elvis/Makefile b/editors/elvis/Makefile index 16a0dc773b77..949b2ef16bf6 100644 --- a/editors/elvis/Makefile +++ b/editors/elvis/Makefile @@ -20,13 +20,13 @@ CONFIGURE_ARGS= --bindir=${PREFIX}/bin --datadir=${PREFIX}/share/elvis MAN1= elvis.1 elvtags.1 ref.1 # Support building on systems with or without X11 installed. -.if defined(NO_X11) +.if defined(WITHOUT_X11) CONFIGURE_ARGS+= --with-x=no .else USE_XLIB= yes pre-fetch: - @${ECHO_MSG} "To build this port without X11, define \"NO_X11\"." + @${ECHO_MSG} "To build this port without X11, define \"WITHOUT_X11\"." .endif pre-configure: |