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 /net/mtr | |
parent | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (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 'net/mtr')
-rw-r--r-- | net/mtr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mtr/Makefile b/net/mtr/Makefile index cd7dd20a3c1e..25b872761e11 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -31,10 +31,10 @@ CONFIGURE_ARGS+=--disable-ipv6 #.endif pre-patch: -.if !defined(USE_GTK) +.if !defined(WITH_GTK) @${ECHO} "" @${ECHO} "If you want to compile with GTK support," - @${ECHO} "hit Ctrl-C right now and use \"make USE_GTK=yes\" " + @${ECHO} "hit Ctrl-C right now and use \"make WITH_GTK=yes\" " @${ECHO} "" CONFIGURE_ARGS+=--with-gtk-prefix=/nopath .else |