From d593cf51ffbb1892951cdbe0f814ed2ac4b710df Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 2 Feb 2022 18:17:58 +0000 Subject: [PATCH] build - fix cc.links for bsd case to use args not link args @fix --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 12d6c48e3..d60d3c804 100644 --- a/meson.build +++ b/meson.build @@ -105,7 +105,7 @@ suid_ldflags = [] dep_crypt = [] if freebsd == true or host_machine.system().startswith('pcbsd') dep_crypt = cc.find_library('crypt', required: true) - if cc.links('', args: '-fPIE', link_args: '-pie') == true + if cc.links('', args: ['-fPIE', '-pie']) == true suid_cflags = '-fPIE' suid_ldflags = '-pie' endif