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.
This commit is contained in:
Jonathan Marler 2019-11-12 22:11:27 -07:00
parent a218127ab3
commit 569b60675d
1 changed files with 1 additions and 1 deletions

View File

@ -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