From 3b67a18bcf7ec43c135f4d599ce794673a434cd7 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Mon, 17 Nov 2025 17:57:14 +0000 Subject: Makefile: Remove conditional variable assignment. We don't need conditional variable assignment to override variables on the command line. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4790d13..07c7816 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # run64 --- SRFI-64 test runner -# Copyright © 2022 Arun Isaac +# Copyright © 2022, 2025 Arun Isaac # # This file is part of run64. # @@ -16,8 +16,8 @@ # You should have received a copy of the GNU General Public License # along with run64. If not, see . -EMACS ?= emacs -SED ?= sed +EMACS = emacs +SED = sed prefix ?= /usr/local exec_prefix ?= $(prefix) -- cgit 1.4.1