From 8cac541c2480766a2ce4a3330d29b7d3288c0661 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Wed, 2 Oct 2024 00:44:57 +0200 Subject: [PATCH] progress 6 --- .github/workflows/bsd.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bsd.yml b/.github/workflows/bsd.yml index d6504a021..ef0c4a414 100644 --- a/.github/workflows/bsd.yml +++ b/.github/workflows/bsd.yml @@ -62,4 +62,4 @@ jobs: pkgin -y install gmake python311-* gcc12-* run: | set -e - PIP_BREAK_SYSTEM_PACKAGES=1 gmake install-pydeps install print-sysinfo test test-memleaks + PIP_BREAK_SYSTEM_PACKAGES=1 PYTHON=python3.11 gmake install-pydeps install print-sysinfo test test-memleaks diff --git a/Makefile b/Makefile index 4ed7b2294..e9029109a 100644 --- a/Makefile +++ b/Makefile @@ -19,9 +19,9 @@ ifeq ($(UNAME_S),Linux) else ifeq ($(UNAME_S),FreeBSD) FREEBSD = true else ifeq ($(UNAME_S),NetBSD) - NetBSD = true + NETBSD = true else ifeq ($(UNAME_S),OpenBSD) - OpenBSD = true + OPENBSD = true endif ifneq (,$(shell command -v sudo 2> /dev/null))