From: Sven Wegener Date: Sat, 31 Aug 2024 19:11:58 +0000 (+0200) Subject: configure: quote argument to SR_APPEND X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=8da5cfca3237d9b3765d0d39e0b2afeb112ffd0e;p=libsigrok.git configure: quote argument to SR_APPEND ./configure: line 19086: zlib: command not found because of sr_deps_avail=${sr_deps_avail}${sr_deps_avail:+' '}crc32 zlib Signed-off-by: Sven Wegener --- diff --git a/configure.ac b/configure.ac index 5c30a816..096bcd69 100644 --- a/configure.ac +++ b/configure.ac @@ -99,7 +99,7 @@ SR_EXTRA_CXX_LIBS= SR_ARG_OPT_PKG([zlib], [ZLIB], , [zlib]) AM_CONDITIONAL([HAVE_ZLIB], [test "x$sr_have_zlib" = xyes]) AM_COND_IF([HAVE_ZLIB], [ - SR_APPEND([sr_deps_avail], [crc32 zlib]) + SR_APPEND([sr_deps_avail], ['crc32 zlib']) SR_PREPEND([SR_EXTRA_LIBS], [-lz]) ])