diff options
author | Fredrik Salomonsson <plattfot@posteo.net> | 2021-01-27 14:08:29 -0800 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@posteo.net> | 2021-01-27 14:08:29 -0800 |
commit | 0356282034b1f3c8be7828694e53e59bff6a5e9d (patch) | |
tree | db3bf0c74c5b24991be0c6aaa6eda62f8e0cee5f | |
parent | a6d76724e621e828f54a9b8beba9163e50b64d83 (diff) | |
download | pinentry-rofi-0356282034b1f3c8be7828694e53e59bff6a5e9d.tar.gz |
Don't hardcode the path to the guile executable
Instead use the path autoconf finds, avoids a subtitle bug that it
will pick up guile installed at the system level instead of guix.
-rw-r--r-- | scripts/pinentry-rofi.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pinentry-rofi.in b/scripts/pinentry-rofi.in index 47a85e5..d2a4f05 100644 --- a/scripts/pinentry-rofi.in +++ b/scripts/pinentry-rofi.in @@ -1,4 +1,4 @@ -#! /usr/bin/guile \ +#! @GUILE@ \ --no-auto-compile -e main -s !# ;; bin/pinentry-rofi --- pinentry-rofi cli -*- coding: utf-8 -*- |