droid4: Expand $_patchset to work in the for loop.

This commit is contained in:
parazyd 2018-01-30 12:05:22 +01:00
parent 5b1521a780
commit f361def9c9
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ build_kernel_${arch}() {
_patchdir="$R/extra/patches/linux-droid4-patches"
_patchset="$(find ${_patchdir} -name '*.patch' | sort)"
for i in "$_patchset"; do
for i in "${=_patchset}"; do
patch -p1 < "$i"
done