diff options
author | adamw <adamw@FreeBSD.org> | 2014-06-20 07:59:37 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-06-20 07:59:37 +0800 |
commit | daf5561bc56cd7935ee8bb50dba7bd5b12306848 (patch) | |
tree | 9b9f038dbc010e5cb4f7809c7431300544f4622a | |
parent | 734c976f7129f1fff0bc4e903dbafe6f711f9a12 (diff) | |
download | freebsd-ports-gnome-daf5561bc56cd7935ee8bb50dba7bd5b12306848.tar.gz freebsd-ports-gnome-daf5561bc56cd7935ee8bb50dba7bd5b12306848.tar.zst freebsd-ports-gnome-daf5561bc56cd7935ee8bb50dba7bd5b12306848.zip |
USES, and remove unnecessary +='s from OPTIONS helpers.
-rw-r--r-- | shells/rc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shells/rc/Makefile b/shells/rc/Makefile index 42c001850957..1c8454afe09b 100644 --- a/shells/rc/Makefile +++ b/shells/rc/Makefile @@ -10,14 +10,14 @@ MASTER_SITES= ftp://rc.quanstro.net/pub/ \ MAINTAINER= quanstro@quanstro.net COMMENT= Unix incarnation of the plan9 shell -USE_BZIP2= YES +USES= tar:bz2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-history OPTIONS_DEFINE= READLINE -READLINE_USES+= readline -READLINE_CONFIGURE_WITH+= --with-readline -READLINE_MAKE_ARGS_OFF+= CFLAGS="$(CFLAGS) -static" +READLINE_USES= readline +READLINE_CONFIGURE_WITH=--with-readline +READLINE_MAKE_ARGS_OFF= CFLAGS="$(CFLAGS) -static" .include <bsd.port.mk> |