vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 0ab32e101bdc9992d68352ce2d7e0fb4b66cddc3 parent bc9eba0fdfb35222f8c2e6068a91d5a8ce79980d Author: Christian Hesse <mail@eworm.de> Date: Mon, 21 Mar 2016 13:54:04 +0100 configure: fix condition for libselinux Diffstat:
| M | configure | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure @@ -393,8 +393,8 @@ EOF LDFLAGS_SELINUX="-lselinux" fi - if $CC $CFLAGS $LDFLAGS $CFLAGS_SELINUX $LDFLAGS_SELINUX \ - -o /dev/null "$tmpc" >/dev/null 2>&1; then + if $CC $CFLAGS $CFLAGS_SELINUX "$tmpc" \ + $LDFLAGS $LDFLAGS_SELINUX -o /dev/null >/dev/null 2>&1; then CONFIG_SELINUX=1 printf "%s\n" "yes" else