From 5f1b3aebe472e69dbf80f0feb99773af6eee129d Mon Sep 17 00:00:00 2001 From: Carlo Dandan Date: Mon, 28 Aug 2023 13:29:01 +0800 Subject: [PATCH] proton-builder: reverr changes in make command. Signed-off-by: Carlo Dandan --- .github/workflows/kernel.yml | 6 +++--- make.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 4547804..4413504 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -60,8 +60,8 @@ jobs: run: | PATH="${GITHUB_WORKSPACE}/android/toolchains/proton-clang/bin:/bin:$PATH" cd android/kernel - make ${{ env.MAKE }} ${{ github.event.inputs.KERNEL_DEFCONFIG }} - make ${{ env.MAKE }} -j"$(nproc --all)" + ${{ env.MAKE }} ${{ github.event.inputs.KERNEL_DEFCONFIG }} + ${{ env.MAKE }} -j"$(nproc --all)" - name: Check Kernel run: | @@ -96,4 +96,4 @@ jobs: ### Notes * Kernel were built/compiled using proton-clang. * Test at your own risk. - * Use kernel flasher or any custom recoveries to flash the compressed kernel zip file. \ No newline at end of file + * Use kernel flasher or any custom recoveries to flash the compressed kernel zip file. diff --git a/make.txt b/make.txt index 1a9c9a6..721e7d8 100644 --- a/make.txt +++ b/make.txt @@ -1 +1 @@ -O=out ARCH=arm64 LLVM=1 CROSS_COMPILE=aarch64-linux-gnu CROSS_COMPILE_COMPAT=arm-linux-gnueabi \ No newline at end of file +make O=out ARCH=arm64 LLVM=1 CROSS_COMPILE=aarch64-linux-gnu CROSS_COMPILE_COMPAT=arm-linux-gnueabi