From 9907ea688f3bb6bc61589b2066225f1e73bf0542 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Mon, 21 Mar 2016 13:28:59 +0100 Subject: configure: fix condition for libtermkey --- configure | 4 ++-- 1 file 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" -- cgit v1.2.3