From c4d4028dde90562f631edf559fbc42d8ec1b29de Mon Sep 17 00:00:00 2001 From: Wesley Wiser Date: Thu, 21 Oct 2021 16:09:30 +0000 Subject: fix failure to use add-cfi scripts on asm when building out-of-tree use $srcdir in configure test for add-cfi script. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index e1aefed7..ca5cbc0b 100755 --- a/configure +++ b/configure @@ -409,7 +409,7 @@ test "$debug" = yes && CFLAGS_AUTO=-g # printf "checking whether we should preprocess assembly to add debugging information... " if fnmatch '-g*|*\ -g*' "$CFLAGS_AUTO $CFLAGS" && - test -f "tools/add-cfi.$ARCH.awk" && + test -f "$srcdir/tools/add-cfi.$ARCH.awk" && printf ".file 1 \"srcfile.s\"\n.line 1\n.cfi_startproc\n.cfi_endproc" | $CC -g -x assembler -c -o /dev/null 2>/dev/null - then ADD_CFI=yes -- cgit 1.4.1