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]

Re: Add DJGPP-specific binary paths to configure.in



Finally I got a chance to play with DJGPP system and I think 
I have found the real problem - all assembler checks are 
done using $gcc_cv_as, when default assembler is set to $as. 
Moreover, it is not used anywhere.

So is it OK to commit the patch to branch and head?

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

	* configure.in: Use $gcc_cv_as instead of $as.
	* configure: Regenerated.

Index: gcc/gcc/configure.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/configure.in,v
retrieving revision 1.483.2.5
diff -u -p -r1.483.2.5 configure.in
--- configure.in	2001/03/10 00:17:03	1.483.2.5
+++ configure.in	2001/03/13 20:03:00
@@ -1159,7 +1159,7 @@ if test "x$gcc_cv_as" = x -a x$host = x$
 	# If the loop below does not find an assembler, then use whatever
 	# one we can find in the users's path.
 	# user's path.
-	as=as$host_exeext
+	gcc_cv_as=as$host_exeext
 
 	test_dirs="$test_prefix/lib/gcc-lib/$target/$gcc_version \
 		   $test_prefix/lib/gcc-lib/$target \


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