gnome-autogen.sh: correct IFS value
authorRyan Lortie <desrt@desrt.ca>
Wed, 12 Mar 2014 23:54:40 +0000 (19:54 -0400)
committerRyan Lortie <desrt@desrt.ca>
Wed, 12 Mar 2014 23:56:16 +0000 (19:56 -0400)
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.  Fix that.

https://bugzilla.gnome.org/show_bug.cgi?id=726208

macros2/gnome-autogen.sh

index a7d4d83..c229ea0 100644 (file)
@@ -56,7 +56,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