summary refs log tree commit diff
path: root/changelog.d/9689.misc
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2021-03-25 17:53:54 +0100
committerGitHub <noreply@github.com>2021-03-25 16:53:54 +0000
commitd4c4798a2548a53b63546a176f6dd350c4ad26bc (patch)
tree03a1d35dd268e0d6eebf0163e54789a1df7937b9 /changelog.d/9689.misc
parentplatform specific prerequisites in source install (#9667) (diff)
downloadsynapse-d4c4798a2548a53b63546a176f6dd350c4ad26bc.tar.xz
Use interpreter from $PATH instead of absolute paths in various scripts using /usr/bin/env (#9689)
On NixOS, `bash` isn't under `/bin/bash` but rather in some directory in `$PATH`. Locally, I've been patching those scripts to make them work.

`/usr/bin/env` seems to be the only [portable way](https://unix.stackexchange.com/questions/29608/why-is-it-better-to-use-usr-bin-env-name-instead-of-path-to-name-as-my) to use binaries from the PATH as interpreters.

Signed-off-by: Quentin Gliech <quentingliech@gmail.com>
Diffstat (limited to 'changelog.d/9689.misc')
-rw-r--r--changelog.d/9689.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/9689.misc b/changelog.d/9689.misc
new file mode 100644
index 0000000000..a08d3482ad
--- /dev/null
+++ b/changelog.d/9689.misc
@@ -0,0 +1 @@
+Use interpreter from `$PATH` via `/usr/bin/env` instead of absolute paths in various scripts.