From 009bb83e2bb92233d4285eada58273f7e1c074ec Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 21 Mar 2016 10:25:26 +0100 Subject: configure: fix test for CFI directives The test was failing as a consequence of the split casm -> casm / casm_options. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 9e315065..82d7142f 100755 --- a/configure +++ b/configure @@ -255,7 +255,7 @@ testfun: .cfi_adjust_cfa_offset 16 .cfi_endproc EOF - if $casm -o /dev/null $f 2>/dev/null + if $casm $casm_options -o /dev/null $f 2>/dev/null then echo "yes"; asm_supports_cfi=true else echo "no"; asm_supports_cfi=false fi -- cgit