Skip to content

Commit 73adaad

Browse files
authored
Fix extraction of flags in copy-libs.sh
1 parent a349077 commit 73adaad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/copy-libs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ mkdir -p "$AR_SDK"
326326
PIO_AS_FLAGS=$(
327327
{
328328
echo "$PIO_CXX_FLAGS" | grep -o '\-m[^[:space:]]*'
329-
echo "$PIO_C_FLAGS" | grep -o '\-m[^[:space:]]*'
329+
echo "$PIO_CC_FLAGS" | grep -o '\-m[^[:space:]]*'
330330
} | awk '!seen[$0]++' | tr '\n' ' '
331331
)
332332

0 commit comments

Comments
 (0)