vis

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

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

commit bc9eba0fdfb35222f8c2e6068a91d5a8ce79980d
parent 95ff466f33ee69f2182c017caa1170bc5f359ce8
Author: Christian Hesse <mail@eworm.de>
Date:   Mon, 21 Mar 2016 13:52:34 +0100

configure: fix condition for libacl

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

diff --git a/configure b/configure @@ -358,8 +358,8 @@ EOF LDFLAGS_ACL="-lacl" fi - if $CC $CFLAGS $LDFLAGS $CFLAGS_ACL $LDFLAGS_ACL \ - -o /dev/null "$tmpc" >/dev/null 2>&1; then + if $CC $CFLAGS $CFLAGS_ACL "$tmpc" \ + $LDFLAGS $LDFLAGS_ACL -o /dev/null >/dev/null 2>&1; then CONFIG_ACL=1 printf "%s\n" "yes" else