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]
Other format: [Raw text]

Re: libstdc++ multilib configury broken in CVS head


Benjamin Kosnik wrote:

> >I'm currently running a multilibbed bootstrap/regtest on 
> >s390x-ibm-linux with this change; OK to commit if this 
> >goes through?
> 
> Yes, sorry about that.

OK, I've checked in the version below.

> >B.t.w. I'm unable to regenerate an unchanged libstdc++
> >'configure' file.  Which autoconf version was used to
> >generate it?  Apparently not the same that is used for
> >the rest of gcc (e.g. the --site-file stuff is missing).
> 
> I'm using the autoconf 2.13 that ships on RH 7.3

Thanks, this worked.  (The autoconf 2.13 that shipped
with an earlier RH generated yet another variant :-/)

ChangeLog:

	* configure.in: Define with_target_subdir and with_build_subdir
	variables in config-ml.in AC_OUTPUT call.
	* configure: Regenerate.

Index: libstdc++-v3/configure
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/configure,v
retrieving revision 1.287
diff -c -p -r1.287 configure
*** libstdc++-v3/configure	16 Dec 2002 19:01:44 -0000	1.287
--- libstdc++-v3/configure	17 Dec 2002 22:05:59 -0000
*************** cat >> $CONFIG_STATUS <<EOF
*** 24293,24298 ****
--- 24293,24300 ----
  srcdir=${srcdir}
  host=${host}
  target=${target}
+ with_target_subdir=${with_target_subdir}
+ with_build_subdir=${with_build_subdir}
  with_multisubdir=${with_multisubdir}
  ac_configure_args="${multilib_arg} ${ac_configure_args}"
  CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
Index: libstdc++-v3/configure.in
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/configure.in,v
retrieving revision 1.111
diff -c -p -r1.111 configure.in
*** libstdc++-v3/configure.in	16 Dec 2002 19:01:55 -0000	1.111
--- libstdc++-v3/configure.in	17 Dec 2002 22:06:00 -0000
*************** chmod +x testsuite_flags
*** 489,494 ****
--- 489,496 ----
  srcdir=${srcdir}
  host=${host}
  target=${target}
+ with_target_subdir=${with_target_subdir}
+ with_build_subdir=${with_build_subdir}
  with_multisubdir=${with_multisubdir}
  ac_configure_args="${multilib_arg} ${ac_configure_args}"
  CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}

Bye,
Ulrich

-- 
  Dr. Ulrich Weigand
  weigand@informatik.uni-erlangen.de


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