diff options
| author | Arun Isaac | 2025-11-17 17:57:14 +0000 |
|---|---|---|
| committer | Arun Isaac | 2025-11-17 17:57:14 +0000 |
| commit | 3b67a18bcf7ec43c135f4d599ce794673a434cd7 (patch) | |
| tree | 46c393a299c1c9a3ab014045b83389fa72d989fc /Makefile | |
| parent | be77b532e3d2d49fa5b3be1fa0fd235c2fc36ecf (diff) | |
| download | run64-3b67a18bcf7ec43c135f4d599ce794673a434cd7.tar.gz run64-3b67a18bcf7ec43c135f4d599ce794673a434cd7.tar.lz run64-3b67a18bcf7ec43c135f4d599ce794673a434cd7.zip | |
Makefile: Remove conditional variable assignment.
We don't need conditional variable assignment to override variables on the command line.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files 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 <arunisaac@systemreboot.net> +# Copyright © 2022, 2025 Arun Isaac <arunisaac@systemreboot.net> # # 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 <https://www.gnu.org/licenses/>. -EMACS ?= emacs -SED ?= sed +EMACS = emacs +SED = sed prefix ?= /usr/local exec_prefix ?= $(prefix) |
