From 335c797c12805c075a028e7c563cc1e60d81df1f Mon Sep 17 00:00:00 2001 From: Kbz-8 Date: Mon, 16 Dec 2024 17:26:12 +0100 Subject: [PATCH] fixing homebrew path --- .github/workflows/linux_clang.yml | 4 ---- .github/workflows/linux_gcc.yml | 4 ---- .github/workflows/macos_x86.yml | 4 ---- Makefile | 4 ++-- 4 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/linux_clang.yml b/.github/workflows/linux_clang.yml index d39d34b..1300ead 100644 --- a/.github/workflows/linux_clang.yml +++ b/.github/workflows/linux_clang.yml @@ -21,10 +21,6 @@ jobs: if: "!contains(github.event.head_commit.message, 'ci skip')" steps: - - name: Get current date as package key - id: cache_key - run: echo "key=$(date +'%W')" >> $GITHUB_OUTPUT - - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/linux_gcc.yml b/.github/workflows/linux_gcc.yml index 7b32745..f676874 100644 --- a/.github/workflows/linux_gcc.yml +++ b/.github/workflows/linux_gcc.yml @@ -21,10 +21,6 @@ jobs: if: "!contains(github.event.head_commit.message, 'ci skip')" steps: - - name: Get current date as package key - id: cache_key - run: echo "key=$(date +'%W')" >> $GITHUB_OUTPUT - - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/macos_x86.yml b/.github/workflows/macos_x86.yml index 78433d2..80f8408 100644 --- a/.github/workflows/macos_x86.yml +++ b/.github/workflows/macos_x86.yml @@ -21,10 +21,6 @@ jobs: if: "!contains(github.event.head_commit.message, 'ci skip')" steps: - - name: Get current date as package key - id: cache_key - run: echo "key=$(date +'%W')" >> $GITHUB_OUTPUT - - name: Checkout repository uses: actions/checkout@v4 diff --git a/Makefile b/Makefile index 06b084e..5a5c659 100644 --- a/Makefile +++ b/Makefile @@ -48,8 +48,8 @@ else endif ifeq ($(OS), Darwin) - LDFLAGS += -L /opt/homebrew/lib -lSDL2 - CXXFLAGS += -I /opt/homebrew/include + LDFLAGS += -L /opt/homebrew/Cellar/lib -lSDL2 + CXXFLAGS += -I /opt/homebrew/Cellar/include NAME = libmlx.dylib endif