From: Jameson Graef Rollins Date: Sat, 2 Jun 2012 18:16:01 +0000 (-0700) Subject: config: add quoting to fix IFS bug X-Git-Tag: 0.14~104 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=12772b67620de6cf06c368f57fa3eb6e128b1ca3 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. --- diff --git a/configure b/configure index 5602be24..3fad424c 100755 --- a/configure +++ b/configure @@ -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")