From c93cfdd20da1cf3b0860895c278b5a4676ccb057 Mon Sep 17 00:00:00 2001 From: Tk-Glitch Date: Sun, 27 Jun 2021 15:48:12 +0200 Subject: [PATCH] I thought we were done with those --- PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 3cc5861..61e87e1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -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 }