linux-tkg: The double equal sign amusement continuation

This commit is contained in:
Tk-Glitch
2020-08-17 16:43:41 +02:00
parent 25d9259519
commit 967331d0be
9 changed files with 390 additions and 390 deletions

View File

@@ -123,7 +123,7 @@ build() {
PATH=${CUSTOM_GCC_PATH}/bin:${CUSTOM_GCC_PATH}/lib:${CUSTOM_GCC_PATH}/include:${PATH}
fi
if [ "$_force_all_threads" == "true" ]; then
if [ "$_force_all_threads" = "true" ]; then
_force_all_threads="-j$((`nproc`*2))"
else
_force_all_threads="${MAKEFLAGS}"
@@ -258,7 +258,7 @@ hackheaders() {
echo "Stripping vmlinux..."
strip -v $STRIP_STATIC "$builddir/vmlinux"
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
}