Skip to content

Commit 1f03e9f

Browse files
authored
Change SHELL assignment from ?= to =. (#23)
`SHELL` is set by default, so `SHELL ?= xxx` has no effect. Using `SHELL = /usr/bin/env bash` still has the desired effect of allowing the variable to be overwritten on the command line, e.g. ``` $ make cmd SHELL=zsh ``` will work.
1 parent 2dd6902 commit 1f03e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aedifix/templates/variables.mk.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# subsequent calls to configure (or reconfigure) will overwrite any changes.
44
.NOTPARALLEL:
55

6-
export SHELL ?= /usr/bin/env bash
6+
export SHELL = /usr/bin/env bash
77
export AWK ?= awk
88
export PYTHON ?= @AEDIFIX_PYTHON_EXECUTABLE@
99
export CMAKE ?= @CMAKE_COMMAND@

0 commit comments

Comments
 (0)