mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 01:14:53 +01:00
configure: SC2016: Expressions don't expand in single quotes
Fix shellcheck warnings. Use double quotes but escape $ to make it look more intentional.
This commit is contained in:
parent
b191de511e
commit
2c1a7321e9
1 changed files with 2 additions and 2 deletions
4
configure
vendored
4
configure
vendored
|
@ -491,11 +491,11 @@ else
|
|||
fi
|
||||
|
||||
if [ -z "${EMACSLISPDIR}" ]; then
|
||||
EMACSLISPDIR='$(prefix)/share/emacs/site-lisp'
|
||||
EMACSLISPDIR="\$(prefix)/share/emacs/site-lisp"
|
||||
fi
|
||||
|
||||
if [ -z "${EMACSETCDIR}" ]; then
|
||||
EMACSETCDIR='$(prefix)/share/emacs/site-lisp'
|
||||
EMACSETCDIR="\$(prefix)/share/emacs/site-lisp"
|
||||
fi
|
||||
|
||||
printf "Checking if emacs is available... "
|
||||
|
|
Loading…
Reference in a new issue