diff options
| author | Christian Hesse <mail@eworm.de> | 2016-03-21 13:28:59 +0100 |
|---|---|---|
| committer | Christian Hesse <mail@eworm.de> | 2016-03-21 13:50:34 +0100 |
| commit | 9907ea688f3bb6bc61589b2066225f1e73bf0542 (patch) | |
| tree | 647a301abe28627bc9cc44dae5eda63264e2e44e /configure | |
| parent | bc8518ab979ae4d45db9912e8cf50e730b3ad3dc (diff) | |
| download | vis-9907ea688f3bb6bc61589b2066225f1e73bf0542.tar.gz vis-9907ea688f3bb6bc61589b2066225f1e73bf0542.tar.xz | |
configure: fix condition for libtermkey
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |
