vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 5f10dfbb06f3f51a0cb02a63df38ea7dbe04a4cc
parent 1c4978d2d585154249bd6ecc493ee6357c059b72
Author: Christian Hesse <mail@eworm.de>
Date:   Mon, 21 Mar 2016 13:28:59 +0100

configure: fix condition for libtermkey

Diffstat:
Mconfigure | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure @@ -276,8 +276,8 @@ if test -z "$LDFLAGS_TERMKEY"; then LDFLAGS_TERMKEY="-ltermkey" fi -if $CC $CFLAGS $CFLAGS_TERMKEY $LDFLAGS $LDFLAGS_TERMKEY \ - -o /dev/null "$tmpc" >/dev/null 2>&1; then +if $CC $CFLAGS $CFLAGS_TERMKEY "$tmpc" $LDFLAGS $LDFLAGS_TERMKEY \ + -o /dev/null >/dev/null 2>&1; then printf "%s\n" "yes" else printf "%s\n" "no"