diff options
author | Yang Tse <yangsita@gmail.com> | 2008-11-19 01:57:27 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-11-19 01:57:27 +0000 |
commit | 305f4d92ef4b25a3139112592fef31256ca3abd8 (patch) | |
tree | f0ebb2d583df22fe0cb6df00e85703a463652318 /m4 | |
parent | c36f0e71b6f6e2e04a5ad0ed96887c502452bef8 (diff) | |
download | curl-305f4d92ef4b25a3139112592fef31256ca3abd8.tar.gz |
user provided PATH_SEPARATOR always overrides auto-detected one
Diffstat (limited to 'm4')
-rw-r--r-- | m4/curl-system.m4 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/m4/curl-system.m4 b/m4/curl-system.m4 index 57d4cccb6..3f8bb19f9 100644 --- a/m4/curl-system.m4 +++ b/m4/curl-system.m4 @@ -22,7 +22,7 @@ #*************************************************************************** # File version for 'aclocal' use. Keep it a single number. -# serial 1 +# serial 2 dnl CURL_CHECK_PATH_SEPARATOR @@ -63,10 +63,8 @@ AC_DEFUN([CURL_CHECK_PATH_SEPARATOR], [ dnl Separator with the greater directory count is the auto-detected one. if test $tst_dirs_sem -gt $tst_dirs_col; then tst_auto_separator=';' - PATH_SEPARATOR=';' else tst_auto_separator=':' - PATH_SEPARATOR=':' fi if test -z "$PATH_SEPARATOR"; then dnl Simply use the auto-detected one when not already set. |