summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-02 11:06:09 +0100
committerinfirit <[email protected]>2014-12-02 11:16:35 +0100
commit37be3c82b50eb2c51ac1f4bb5110b1174d750066 (patch)
treec1d054e511232b03f363aeefb5f5e6a6a3fe7bc1
parent16a737f8e1fa7434448416fd62e842a1c340d598 (diff)
downloadmate-common-37be3c82b50eb2c51ac1f4bb5110b1174d750066.tar.bz2
mate-common-37be3c82b50eb2c51ac1f4bb5110b1174d750066.tar.xz
mate-autogen.sh: correct IFS value
Due to a likely copy-paste mistake, the default value of IFS was being set to 9 spaces instead of a tab and a space. Based on gnome-common commit: fb0e5a9dbed732dd01d245f141ff2beb35689971
-rw-r--r--macros/mate-autogen2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/mate-autogen b/macros/mate-autogen
index 97869f9..0e8f986 100644
--- a/macros/mate-autogen
+++ b/macros/mate-autogen
@@ -74,7 +74,7 @@ compare_versions() {
ch_min_version=$1
ch_actual_version=$2
ch_status=0
- IFS="${IFS= }"; ch_save_IFS="$IFS"; IFS="."
+ IFS="${IFS= }"; ch_save_IFS="$IFS"; IFS="."
set $ch_actual_version
for ch_min in $ch_min_version; do
ch_cur=`echo $1 | sed 's/[^0-9].*$//'`; shift # remove letter suffixes