From 9ee6cf6c1f64d7cd7214353d0a71fde1d8daea5b Mon Sep 17 00:00:00 2001 From: Arthur Zamarin Date: Sat, 9 Sep 2023 22:21:18 +0300 Subject: [PATCH] kernel-2.eclass: fix Unquoted Variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Arthur Zamarin Signed-off-by: Michał Górny --- eclass/kernel-2.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 7b77b64de90f7..8bab2b482cf72 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -877,7 +877,7 @@ install_sources() { dodir /usr/src einfo ">>> Copying sources ..." - file="$(find ${WORKDIR} -iname "docs" -type d)" + file="$(find "${WORKDIR}" -iname "docs" -type d)" if [[ -n ${file} ]]; then for file in $(find ${file} -type f); do echo "${file//*docs\/}" >> "${S}"/patches.txt