diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2012-06-02 11:16:01 -0700 |
---|---|---|
committer | David Bremner <bremner@debian.org> | 2012-06-03 13:26:44 -0300 |
commit | 12772b67620de6cf06c368f57fa3eb6e128b1ca3 (patch) | |
tree | 8a5fdc9a4ce4d721edacdbc8d96391fc681a870a /configure | |
parent | 5973881b771b4da489a365572152c44e21c329eb (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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |