diff options
author | mmoll <mmoll@FreeBSD.org> | 2015-11-05 18:14:49 +0800 |
---|---|---|
committer | mmoll <mmoll@FreeBSD.org> | 2015-11-05 18:14:49 +0800 |
commit | 63e72995c537912c7c9f2d43b9d23fdde45ebb39 (patch) | |
tree | 20ba2eb818994fd92435bd2f062b5ccd3328a541 /lang/ruby22 | |
parent | edbe28d0be58aa087abbc0e62af052e0879b97d4 (diff) | |
download | freebsd-ports-gnome-63e72995c537912c7c9f2d43b9d23fdde45ebb39.tar.gz freebsd-ports-gnome-63e72995c537912c7c9f2d43b9d23fdde45ebb39.tar.zst freebsd-ports-gnome-63e72995c537912c7c9f2d43b9d23fdde45ebb39.zip |
lang/ruby2*: correct configure options
Fix readline & libedit configure options after a slight error slipped in
with the patches done in r400142.
PR: 203988
Submitted by: John Hein <z7dr6ut7gs@snkmail.com>
Diffstat (limited to 'lang/ruby22')
-rw-r--r-- | lang/ruby22/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/ruby22/Makefile b/lang/ruby22/Makefile index ee111e569d7b..f658ca28c623 100644 --- a/lang/ruby22/Makefile +++ b/lang/ruby22/Makefile @@ -62,11 +62,11 @@ CAPIDOCS_CONFIGURE_ENABLE= install-capi GMP_CONFIGURE_WITH= gmp GMP_LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp LIBEDIT_BUILD_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit -LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LIBEDITPREFIX} +LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE} LIBEDIT_RUN_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit RDOC_CONFIGURE_ENABLE= install-rdoc READLINE_BUILD_DEPENDS= readline>=0:${PORTSDIR}/devel/readline -READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${READLINEPREFIX} +READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE} READLINE_RUN_DEPENDS= readline>=0:${PORTSDIR}/devel/readline CPE_VENDOR= ruby-lang |