diff options
author | jperkin <jperkin@pkgsrc.org> | 2013-08-16 11:31:50 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2013-08-16 11:31:50 +0000 |
commit | 67a95c663c69b1a1631b96fab9cddd8a8a15fc90 (patch) | |
tree | 0b8bfb82c8f1f369f12324bce18134f937647394 | |
parent | 1f84dfc23a4eb4c9042d4a42d8733766205fe7b1 (diff) | |
download | pkgsrc-67a95c663c69b1a1631b96fab9cddd8a8a15fc90.tar.gz |
Change READLINE_DEFAULT to 'readline' if not using a builtin implementation,
there is just too much breakage with editline currently and most of the
advantages of editline are lost when not using a builtin version.
-rw-r--r-- | mk/readline.buildlink3.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mk/readline.buildlink3.mk b/mk/readline.buildlink3.mk index 9d794ef1c13..88765fcf504 100644 --- a/mk/readline.buildlink3.mk +++ b/mk/readline.buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: readline.buildlink3.mk,v 1.3 2013/07/19 14:35:37 ryoon Exp $ +# $NetBSD: readline.buildlink3.mk,v 1.4 2013/08/16 11:31:50 jperkin Exp $ # # This Makefile fragment is meant to be included by packages that require # any readline implementation instead of one particular one. The available @@ -48,10 +48,9 @@ READLINE_DEFAULT?= editline !empty(IS_BUILTIN.readline:M[Yy][Ee][Ss]) READLINE_DEFAULT?= readline .else -READLINE_DEFAULT?= editline +READLINE_DEFAULT?= readline .endif - _READLINE_ACCEPTED= ${_READLINE_PKGS} # both are provided by pkgsrc. _READLINE_TYPE= ${READLINE_DEFAULT} |