From: Satadru Pramanik, DO, MPH, MEng Date: Tue, 23 Sep 2025 20:48:19 +0000 (-0400) Subject: Fix meson "does not support the `+` operator" error. X-Git-Tag: v2.41.3~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a352807e5026456da4e26bdc1366470643aba227;p=thirdparty%2Futil-linux.git Fix meson "does not support the `+` operator" error. Fixes #3761 --- diff --git a/meson.build b/meson.build index 4ebf0eed4..6d2166447 100644 --- a/meson.build +++ b/meson.build @@ -1473,7 +1473,7 @@ has_seminfo_type = cc.has_type('struct seminfo', args : '-D_GNU_SOURCE', prefix posixipc_libs = [] if not cc.has_function('shm_open') and conf.get('HAVE_SYS_MMAN_H').to_string() == '1' - posixipc_libs = cc.find_library('rt', required : true) + posixipc_libs += cc.find_library('rt', required : true) endif if not cc.has_function('sem_close') and conf.get('HAVE_SEMAPHORE_H').to_string() == '1'