buildroot: Apply patch inside buildroot directory

This commit is contained in:
Tom Dewey 2024-06-19 10:31:57 +01:00 committed by Tom Dewey
parent 1c39a198f7
commit 725d651f96

View file

@ -7,7 +7,7 @@ BUILDROOT_TAR=buildroot-2024.02.3.tar.gz
if [ ! -e "${BUILDROOT}" ]; then if [ ! -e "${BUILDROOT}" ]; then
tar xvf "${BUILDROOT_TAR}" tar xvf "${BUILDROOT_TAR}"
patch -p0 < buildroot-mesa3d.patch pushd ${BUILDROOT} && patch -p0 < buildroot-mesa3d.patch && popd
fi fi
if [ ! -e "${BUILDROOT}/.config" ]; then if [ ! -e "${BUILDROOT}/.config" ]; then