diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-09-09 22:21:18 +0300 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-14 07:30:07 +0200 |
commit | 9ee6cf6c1f64d7cd7214353d0a71fde1d8daea5b (patch) | |
tree | 04fb49f2c53ecfcbf9a9385b6832570f038faa82 /eclass | |
parent | java-utils-2.eclass: fix Unquoted Variable (diff) | |
download | gentoo-9ee6cf6c1f64d7cd7214353d0a71fde1d8daea5b.tar.gz gentoo-9ee6cf6c1f64d7cd7214353d0a71fde1d8daea5b.tar.bz2 gentoo-9ee6cf6c1f64d7cd7214353d0a71fde1d8daea5b.zip |
kernel-2.eclass: fix Unquoted Variable
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 7b77b64de90f..8bab2b482cf7 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 |