diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-13 01:55:08 +0000 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-13 01:55:08 +0000 |
commit | 8ab2e3d3a564b5b9f99e8c6fdd4da4311c14c897 (patch) | |
tree | ef34adac41c401005c4d31f2f71030a2e1fab167 /configure.ac | |
parent | b4ac24f09d494d9aae11a332f1ee6c23857f45a2 (diff) |
quoting, since test breaks (under emscripten) when variable is empty string
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 50bc45594b..ef98654568 100644 --- a/configure.ac +++ b/configure.ac @@ -724,7 +724,7 @@ gl_LIBUNISTRING if test $HAVE_LIBUNISTRING != yes; then AC_MSG_ERROR([GNUnet requires libunistring]) fi -if test $gl_libunistring_hexversion -le 2305; then +if test "$gl_libunistring_hexversion" -le 2305; then AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1]) fi AC_CHECK_HEADERS([unistr.h],,AC_MSG_ERROR([Compiling GNUnet requires unistr.h (from libunistring) to be installed])) |