fixed issue with directory name having spacing in name
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user