This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: change [/\\] to [//\] in configures



As Alexandre Oliva suggested, I've changed it everywhere.

boehm-gc/ChangeLog:

2001-01-03  Laurynas Biveinis  <lauras@softhome.net>

	* aclocal.m4: replace `[/\\]' with `[\\/]'.
	* acinclude.m4: regenerated.
	* configure: regenerated.

gcc/ChangeLog:

2001-01-03  Laurynas Biveinis  <lauras@softhome.net>

	* aclocal.m4: handle DOS absolute paths with backslashes too.
	* configure: regenerated.

libstdc++-v3/ChangeLog:

2001-01-03  Laurynas Biveinis  <lauras@softhome.net>

	* aclocal.m4: replace `[/\\]' with `[\\/]'.
	* acinclude.m4: regenerated.
	* configure: regenerated.

Index: gcc/boehm-gc/aclocal.m4
===================================================================
RCS file: /cvs/gcc/egcs/boehm-gc/aclocal.m4,v
retrieving revision 1.13
diff -u -r1.13 aclocal.m4
--- aclocal.m4	2000/09/10 07:41:00	1.13
+++ aclocal.m4	2001/01/03 10:53:22
@@ -149,7 +149,7 @@
 . [$]{boehm_gc_basedir}/configure.host
 
 case [$]{boehm_gc_basedir} in
-/* | [A-Za-z]:[/\\]*) boehm_gc_flagbasedir=[$]{boehm_gc_basedir} ;;
+/* | [A-Za-z]:[\\/]*) boehm_gc_flagbasedir=[$]{boehm_gc_basedir} ;;
 *) boehm_gc_flagbasedir='[$](top_builddir)/'[$]{boehm_gc_basedir} ;;
 esac
 
Index: gcc/gcc/aclocal.m4
===================================================================
RCS file: /cvs/gcc/egcs/gcc/aclocal.m4,v
retrieving revision 1.37
diff -u -r1.37 aclocal.m4
--- aclocal.m4	2000/10/09 08:36:36	1.37
+++ aclocal.m4	2001/01/03 10:53:45
@@ -297,7 +297,7 @@
   /*)
   gcc_cv_path_$1="[$]$1" # Let the user override the test with a path.
   ;;
-  ?:/*)			 
+  ?:[\\/]*)			 
   gcc_cv_path_$1="[$]$1" # Let the user override the test with a dos path.
   ;;
   *)
Index: gcc/libjava/aclocal.m4
===================================================================
RCS file: /cvs/gcc/egcs/libjava/aclocal.m4,v
retrieving revision 1.14
diff -u -r1.14 aclocal.m4
--- aclocal.m4	2000/09/14 08:01:12	1.14
+++ aclocal.m4	2001/01/03 10:55:53
@@ -88,7 +88,7 @@
 . [$]{libgcj_basedir}/configure.host
 
 case [$]{libgcj_basedir} in
-/* | [A-Za-z]:[/\\]*) libgcj_flagbasedir=[$]{libgcj_basedir} ;;
+/* | [A-Za-z]:[\\/]*) libgcj_flagbasedir=[$]{libgcj_basedir} ;;
 *) libgcj_flagbasedir='[$](top_builddir)/'[$]{libgcj_basedir} ;;
 esac
 
Index: gcc/libstdc++-v3/aclocal.m4
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/aclocal.m4,v
retrieving revision 1.120
diff -u -r1.120 aclocal.m4
--- aclocal.m4	2001/01/02 07:38:45	1.120
+++ aclocal.m4	2001/01/03 10:56:18
@@ -164,7 +164,7 @@
   . [$]{glibcpp_basedir}/configure.host
 
   case [$]{glibcpp_basedir} in
-    /* | [A-Za-z]:[/\\]*) libgcj_flagbasedir=[$]{glibcpp_basedir} ;;
+    /* | [A-Za-z]:[\\/]*) libgcj_flagbasedir=[$]{glibcpp_basedir} ;;
     *) glibcpp_flagbasedir='[$](top_builddir)/'[$]{glibcpp_basedir} ;;
   esac

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]