Skip to content

Commit 6226ca7

Browse files
committed
fix(configure): broken compiler check
Quoting breaks the check in situations like CC="/home/user/buildroot/output/host/bin/ccache /usr/bin/gcc"
1 parent 5d2bda4 commit 6226ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ if ! ${PKG_CONFIG} --exists --print-errors " libkmod >= 23 "; then
6060
exit 1
6161
fi
6262

63-
if ! command -v "${CC}" > /dev/null; then
63+
if ! command -v ${CC} > /dev/null; then
6464
echo "dracut needs a C compiler (${CC} not found)." >&2
6565
exit 1
6666
fi

0 commit comments

Comments
 (0)