From 1c9643249d8e5d44af307c8051426b10e70a4f59 Mon Sep 17 00:00:00 2001
From: Thomas Bernard <[EMAIL REDACTED]>
Date: Wed, 5 Feb 2025 02:01:22 +0100
Subject: [PATCH] fix: do note assume "make", use $(MAKE)
---
mingw/pkg-support/Makefile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/mingw/pkg-support/Makefile b/mingw/pkg-support/Makefile
index ae85b3e2b4995..fde8e53ade99b 100644
--- a/mingw/pkg-support/Makefile
+++ b/mingw/pkg-support/Makefile
@@ -5,18 +5,18 @@ CROSS_PATH := /usr/local
ARCHITECTURES := i686-w64-mingw32 x86_64-w64-mingw32
all install:
- @echo "Type \"make native\" to install 32-bit to /usr"
- @echo "Type \"make cross\" to install 32-bit and 64-bit to $(CROSS_PATH)"
+ @echo "Type \"$(MAKE) native\" to install 32-bit to /usr"
+ @echo "Type \"$(MAKE) cross\" to install 32-bit and 64-bit to $(CROSS_PATH)"
native:
- make install-package arch=i686-w64-mingw32 prefix=/usr
+ $(MAKE) install-package arch=i686-w64-mingw32 prefix=/usr
cross:
mkdir -p $(CROSS_PATH)/cmake
cp -rv cmake/* $(CROSS_PATH)/cmake
for arch in $(ARCHITECTURES); do \
mkdir -p $(CROSS_PATH)/$$arch; \
- make install-package arch=$$arch prefix=$(CROSS_PATH)/$$arch; \
+ $(MAKE) install-package arch=$$arch prefix=$(CROSS_PATH)/$$arch; \
done
install-package: