aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authorGravatar Jameson Graef Rollins <jrollins@finestructure.net>2012-06-02 11:16:01 -0700
committerGravatar David Bremner <bremner@debian.org>2012-06-03 13:26:44 -0300
commit12772b67620de6cf06c368f57fa3eb6e128b1ca3 (patch)
tree8a5fdc9a4ce4d721edacdbc8d96391fc681a870a /configure
parent5973881b771b4da489a365572152c44e21c329eb (diff)
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.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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")