aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2016-03-21 13:28:59 +0100
committerChristian Hesse <mail@eworm.de>2016-03-21 13:50:34 +0100
commit9907ea688f3bb6bc61589b2066225f1e73bf0542 (patch)
tree647a301abe28627bc9cc44dae5eda63264e2e44e /configure
parentbc8518ab979ae4d45db9912e8cf50e730b3ad3dc (diff)
downloadvis-9907ea688f3bb6bc61589b2066225f1e73bf0542.tar.gz
vis-9907ea688f3bb6bc61589b2066225f1e73bf0542.tar.xz
configure: fix condition for libtermkey
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index f1eb730..84c973a 100755
--- 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"