aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2016-03-21 13:52:34 +0100
committerChristian Hesse <mail@eworm.de>2016-03-21 13:52:34 +0100
commitc431c2abe25bc34ec92baed6ea809e20cfa275c1 (patch)
tree0fcbbc825a4282671a07ffa622e22921826313bb /configure
parent6d70e4db9117b2b34fc8e1182f7306ab8659fae2 (diff)
downloadvis-c431c2abe25bc34ec92baed6ea809e20cfa275c1.tar.gz
vis-c431c2abe25bc34ec92baed6ea809e20cfa275c1.tar.xz
configure: fix condition for libacl
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 8962a51..9908702 100755
--- 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