fixed issue with directory name having spacing in name

This commit is contained in:
ag-tsotetsi
2026-02-07 20:53:40 +02:00
parent 6dd72420df
commit 6d83390aef
8 changed files with 43 additions and 44 deletions

View File

@@ -1,15 +1,15 @@
. $PROJECTDIR/build/linux/package.env
. "$PROJECTDIR/build/linux/package.env"
fetch $LINUX_URL
cd $SOURCES && tar xf linux-$LINUX_VERSION.tar.xz && cd linux-$LINUX_VERSION
cd "$SOURCES" && tar xf linux-$LINUX_VERSION.tar.xz && cd linux-$LINUX_VERSION
make mrproper
bootstrap() {
make headers
find usr/include -type f ! -name '*.h' -delete
cp -r usr/include $SYSROOT/usr
cp -r usr/include "$SYSROOT/usr"
}
toolchain() {
@@ -40,4 +40,4 @@ case $1 in
esac
cd $SOURCES && rm -rf $SOURCES/linux-$LINUX_VERSION
cd "$SOURCES" && rm -rf "$SOURCES/linux-$LINUX_VERSION"