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]

Tiny configure.in fix


It just makes configure.in recognize dos style absolute paths.

Laurynas

2000-11-28  Laurynas Biveinis  <lauras@softhome.net>

	* configure.in: recognize DOS-style absolute paths.

--- configure.in.old	Mon Nov 27 14:44:04 2000
+++ configure.in	Tue Nov 28 21:10:43 2000
@@ -735,7 +735,7 @@
 	mkdir $tempdir
 	cd $tempdir
 	case ${srcdir} in
-	/*) realsrcdir=${srcdir};;
+	/* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
 	*) realsrcdir=../${srcdir};;
 	esac
 	CC=${CC_FOR_BUILD} ${realsrcdir}/configure \

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