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:
Jameson Graef Rollins 2012-06-02 11:16:01 -07:00 committed by David Bremner
parent 5973881b77
commit 12772b6762

2
configure vendored
View file

@ -1,7 +1,7 @@
#! /bin/sh #! /bin/sh
# Store original IFS value so it can be changed (and restored) in many places. # 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") srcdir=$(dirname "$0")