mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
config: add quoting to fix IFS bug
Without proper quoting the DEFAULT_IFS was getting set incorrectly, which was causing problems with the storage of some variables later in the script. Quoting fixes the problem.
This commit is contained in:
parent
5973881b77
commit
12772b6762
1 changed files with 1 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -1,7 +1,7 @@
|
|||
#! /bin/sh
|
||||
|
||||
# Store original IFS value so it can be changed (and restored) in many places.
|
||||
readonly DEFAULT_IFS=$IFS
|
||||
readonly DEFAULT_IFS="$IFS"
|
||||
|
||||
srcdir=$(dirname "$0")
|
||||
|
||||
|
|
Loading…
Reference in a new issue