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]

libobjc/configure.in needs AC_CONFIG_AUX_DIR() too, patch included


	The recent patch to libf2c/configure.in by Dave Love cures the
problem my system had finding install-sh when configuring in
egcs/mips-sgi-irix6.2/mabi=64/libf2c/. 

	However I had a similar problem with .../libobjc and needed an
analogous change to libobjc/configure.in for the bootstrap to complete. 

	Is this okay to install?

		--Kaveh


Wed Oct 21 11:11:38 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* configure.in: Use AC_CONFIG_AUX_DIR($topsrcdir).


--- egcs-CVS19981020/libobjc/configure.in~	Tue Oct 20 15:30:33 1998
+++ egcs-CVS19981020/libobjc/configure.in	Wed Oct 21 10:52:26 1998
@@ -31,6 +31,9 @@ if test "${srcdir}" = "." ; then
 else
   topsrcdir=${srcdir}/..
 fi
+dnl This is needed for a multilibbed build in the source tree so
+dnl that install-sh and config.sub get found.
+AC_CONFIG_AUX_DIR($topsrcdir)
 
 dnl Checks for programs.
 # For ObjC we'll set CC to point at the built gcc, but this will get it into
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Icon CMT Corp.


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