summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-05-02 21:22:13 +0000
committerMorgan Deters <mdeters@gmail.com>2011-05-02 21:22:13 +0000
commit70336ce1430a857029e972942d1ba0d9019c7cb6 (patch)
treec75b603760477e2131419395402a239eed752488 /config
parent4908a7c71ad38f60828fc4f4ecaa56d216cfdc97 (diff)
fix for configure
Diffstat (limited to 'config')
-rw-r--r--config/readline.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/config/readline.m4 b/config/readline.m4
index 5535a45f4..70f36bc79 100644
--- a/config/readline.m4
+++ b/config/readline.m4
@@ -20,7 +20,7 @@ else
[if test "$with_readline" != check; then
AC_MSG_FAILURE([cannot find libreadline!])
fi], -lncurses)
- if [ -z "$READLINE_LDFLAGS" ]; then with_readline=no; else with_readline=yes; fi
+ if test -z "$READLINE_LDFLAGS"; then with_readline=no; else with_readline=yes; fi
fi
])# CVC4_CHECK_FOR_READLINE
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback