Commit 82cbf8f7 by Jeffrey A Law Committed by Jeff Law

configure.in (gcc_tooldir): When not making a relative gcc_tooldir...

        * configure.in (gcc_tooldir): When not making a relative gcc_tooldir,
        use $exec_prefix/$target_alias for gcc_tooldir.

From-SVN: r24824
parent 09d83d25
Sat Jan 23 01:37:36 1999 Jeffrey A Law (law@cygnus.com)
* configure.in (gcc_tooldir): When not making a relative gcc_tooldir,
use $exec_prefix/$target_alias for gcc_tooldir.
Fri Jan 22 11:48:56 1999 Richard Henderson <rth@cygnus.com> Fri Jan 22 11:48:56 1999 Richard Henderson <rth@cygnus.com>
* cppp.c (xrealloc): Fix typo last change. * cppp.c (xrealloc): Fix typo last change.
......
...@@ -6279,16 +6279,19 @@ fi ...@@ -6279,16 +6279,19 @@ fi
# if $(exec_prefix) is not the same as $(prefix), then do not use a relative # if $(exec_prefix) is not the same as $(prefix), then do not use a relative
# directory to get to $gcc_tooldir. # directory to get to $gcc_tooldir.
# Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
# make and thus we'd get different behavior depending on where we built the
# sources.
if test x$exec_prefix = x$prefix; then if test x$exec_prefix = x$prefix; then
gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)' gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
else else
gcc_tooldir='$(tooldir)' gcc_tooldir='$(exec_prefix)'/${target_alias}
fi fi
# Warn if using init_priority. # Warn if using init_priority.
echo $ac_n "checking whether to enable init_priority by default""... $ac_c" 1>&6 echo $ac_n "checking whether to enable init_priority by default""... $ac_c" 1>&6
echo "configure:6292: checking whether to enable init_priority by default" >&5 echo "configure:6295: checking whether to enable init_priority by default" >&5
if test x$enable_init_priority != xyes; then if test x$enable_init_priority != xyes; then
enable_init_priority=no enable_init_priority=no
fi fi
......
...@@ -4099,10 +4099,13 @@ fi ...@@ -4099,10 +4099,13 @@ fi
# if $(exec_prefix) is not the same as $(prefix), then do not use a relative # if $(exec_prefix) is not the same as $(prefix), then do not use a relative
# directory to get to $gcc_tooldir. # directory to get to $gcc_tooldir.
# Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
# make and thus we'd get different behavior depending on where we built the
# sources.
if test x$exec_prefix = x$prefix; then if test x$exec_prefix = x$prefix; then
gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)' gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
else else
gcc_tooldir='$(tooldir)' gcc_tooldir='$(exec_prefix)'/${target_alias}
fi fi
AC_SUBST(gcc_tooldir) AC_SUBST(gcc_tooldir)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment