From 569b60675d48242828bcc73552a006906fd690fd Mon Sep 17 00:00:00 2001 From: Jonathan Marler Date: Tue, 12 Nov 2019 22:11:27 -0700 Subject: [PATCH] Use bash from path I use NixOS which supports multiple versions of bash by storing each one in its own unique directory. The version is selected through symbolic links and the PATH variable. This means using the /usr/bin/env mechanism to invoke programs rather than hardcoded absolute paths to programs. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 533d660..4387e3e 100644 --- a/makefile +++ b/makefile @@ -32,7 +32,7 @@ override GDC_FLAGS += $(DFLAGS) DMD_TEST_FLAGS = -w -g -Jbin -version=StdLoggerDisableWarning override LDC_FLAGS += -O5 -release -oq -d-version=StdLoggerDisableWarning override GDC_FLAGS += -O3 -frelease -d-version=StdLoggerDisableWarning -SHELL:=/bin/bash +SHELL:=/usr/bin/env bash all: dmdbuild ldc: ldcbuild