diff options
author | Jim Meyering <jim@meyering.net> | 2003-05-26 19:30:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-05-26 19:30:10 +0000 |
commit | 7d70fd68c59f0cacd76708c2fe53d8df0a47385f (patch) | |
tree | c8b3ceec5d806a6c5a5acdb3a9fad4921f3fa799 /m4 | |
parent | e58732121458f9e5c8dbf622ef275292a7446e57 (diff) | |
download | coreutils-7d70fd68c59f0cacd76708c2fe53d8df0a47385f.tar.xz |
(AM_PATH_PROG_WITH_TEST): Use TAB-SP, not SP-TAB when setting IFS.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/progtest.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/progtest.m4 b/m4/progtest.m4 index 443c8e306..74c08088d 100644 --- a/m4/progtest.m4 +++ b/m4/progtest.m4 @@ -1,5 +1,5 @@ -# progtest.m4 serial 2 (gettext-0.10.40) -dnl Copyright (C) 1996-2002 Free Software Foundation, Inc. +# progtest.m4 serial 3 +dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program @@ -32,7 +32,7 @@ AC_CACHE_VAL(ac_cv_path_$1, ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in ifelse([$5], , $PATH, [$5]); do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then |