diff options
author | martymac <martymac@FreeBSD.org> | 2018-06-12 19:28:42 +0800 |
---|---|---|
committer | martymac <martymac@FreeBSD.org> | 2018-06-12 19:28:42 +0800 |
commit | 19b8e66ab825d2bfcae1726a151f15589ec8d1ae (patch) | |
tree | 2c02e4e6842b44d28259b5fb026df166818290b2 /ftp/lftp | |
parent | 5cb4845d3d0636ea3d72cae500c97843546f9f9d (diff) | |
download | freebsd-ports-gnome-19b8e66ab825d2bfcae1726a151f15589ec8d1ae.tar.gz freebsd-ports-gnome-19b8e66ab825d2bfcae1726a151f15589ec8d1ae.tar.zst freebsd-ports-gnome-19b8e66ab825d2bfcae1726a151f15589ec8d1ae.zip |
Fix readline detection with a non-standard LOCALBASE
Due to a bug in m4/lftp_lib_readline.m4, a wrong prefix is found for readline
when using a non-standard LOCALBASE [1]. Add a temporary workaround waiting for
the patch to be merged upstream [2].
https://reviews.freebsd.org/D15731 [1]
https://github.com/lavv17/lftp/pull/458 [2]
Differential Revision: https://reviews.freebsd.org/D15731
Diffstat (limited to 'ftp/lftp')
-rw-r--r-- | ftp/lftp/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftp/lftp/Makefile b/ftp/lftp/Makefile index 14f3b0d43080..0ce5e8ddb478 100644 --- a/ftp/lftp/Makefile +++ b/ftp/lftp/Makefile @@ -25,6 +25,10 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ USES= charsetfix iconv libtool localbase readline shebangfix GNU_CONFIGURE= yes +# XXX Fix readline detection with a non-standard LOCALBASE +# To remove when m4/lftp_lib_readline.m4 is fixed upstream +CONFIGURE_ARGS+= --with-readline=${LOCALBASE} + PORTDOCS= AUTHORS BUGS ChangeLog FAQ FEATURES INSTALL \ MIRRORS NEWS README README.debug-levels README.modules \ THANKS TODO |