autoconf-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

FYI: PATH_SEP


From: Akim Demaille
Subject: FYI: PATH_SEP
Date: 28 Feb 2001 09:53:31 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley)

Index: ChangeLog
from  Akim Demaille  <address@hidden>
        * acgeneral.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Use `.;.' instead
        of `.;`pwd`': if pwd is c:/foo, we might walk through `.:c'
        (fails), and then `/foo' which might succeed, resulting in
        believing `;' is the right path separator.
Index: acgeneral.m4
===================================================================
RCS file: /cvs/autoconf/acgeneral.m4,v
retrieving revision 1.699
diff -u -u -r1.699 acgeneral.m4
--- acgeneral.m4 2001/02/26 21:37:13 1.699
+++ acgeneral.m4 2001/02/28 08:45:26
@@ -1388,7 +1388,7 @@
 [echo "#! $SHELL" >conftest.sh
 echo  "exit 0"   >>conftest.sh
 chmod +x conftest.sh
-if AC_RUN_LOG([PATH=".;`pwd`"; conftest.sh]); then
+if AC_RUN_LOG([PATH=".;."; conftest.sh]); then
   ac_path_separator=';'
 else
   ac_path_separator=:



reply via email to

[Prev in Thread] Current Thread [Next in Thread]