build - fix cc.links for bsd case to use args not link args

@fix
pull/1/head
Carsten Haitzler 2 years ago
parent 6ed1e61996
commit 2eb76774ef
  1. 2
      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

Loading…
Cancel
Save