I thought we were done with those

This commit is contained in:
Tk-Glitch
2021-06-27 15:48:12 +02:00
parent 2405876c0b
commit c93cfdd20d

View File

@@ -726,12 +726,12 @@ hackheaders() {
mkdir -p "$pkgdir/usr/src"
ln -sr "$builddir" "$pkgdir/usr/src/$pkgbase"
if [ $_STRIP = "true" ]; then
if [ "$_STRIP" = "true" ]; then
echo "Stripping vmlinux..."
strip -v $STRIP_STATIC "$builddir/vmlinux"
fi
if [ $_NUKR = "true" ]; then
if [ "$_NUKR" = "true" ]; then
rm -rf "$srcdir" # Nuke the entire src folder so it'll get regenerated clean on next build
fi
}