raster pushed a commit to branch v-0.25.0.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=d593cf51ffbb1892951cdbe0f814ed2ac4b710df

commit d593cf51ffbb1892951cdbe0f814ed2ac4b710df
Author: Carsten Haitzler <[email protected]>
Date:   Wed Feb 2 18:17:58 2022 +0000

    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

-- 


Reply via email to