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]

probable fix for libf2c multilibbing in the source tree


I'd missed the existence of AC_CONFIG_AUX_DIR, both in the autoconf
doc -- must re-read it every year or two -- and
libiberty/configure.in.  That explains why I didn't understand the
generated libiberty configure.

I've committed this since it seems to DTRT for me and there doesn't
seem much point bothering Craig for approval.

Sorry it's taken so long.

1998-10-19  Dave Love  <d.love@dl.ac.uk>

	* configure.in: Use AC_CONFIG_AUX_DIR.

Index: configure.in
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/libf2c/configure.in,v
retrieving revision 1.17
diff -p -c -r1.17 configure.in
*** configure.in	1998/10/13 08:49:54	1.17
--- configure.in	1998/10/19 16:58:12
*************** if test "${srcdir}" = "."  ; then
*** 30,35 ****
--- 30,38 ----
  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 g77 we'll set CC to point at the built gcc, but this will get it into


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