mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 18:20:51 +08:00
acinclude.m4 (glibcpp_toolexeclibdir): Fix test for cross compilation.
2001-02-15 Anthony Green <green@redhat.com> * acinclude.m4 (glibcpp_toolexeclibdir): Fix test for cross compilation. * aclocal.m4: Regenerate. * configure: Regenerate. From-SVN: r39735
This commit is contained in:
parent
07add946aa
commit
729338bb38
@ -1,3 +1,10 @@
|
||||
2001-02-15 Anthony Green <green@redhat.com>
|
||||
|
||||
* acinclude.m4 (glibcpp_toolexeclibdir): Fix test for cross
|
||||
compilation.
|
||||
* aclocal.m4: Regenerate.
|
||||
* configure: Regenerate.
|
||||
|
||||
2001-02-15 Rodney Brown <RodneyBrown@mynd.com>
|
||||
|
||||
* acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1):
|
||||
|
@ -1569,7 +1569,7 @@ fi
|
||||
# Calculate glibcpp_toolexecdir, glibcpp_toolexeclibdir
|
||||
# Install a library built with a cross compiler in tooldir, not libdir.
|
||||
if test x"$glibcpp_toolexecdir" = x"no"; then
|
||||
if test x"$with_cross_host" = x"yes"; then
|
||||
if test -n "$with_cross_host" && test x"$with_cross_host" != x"no"; then
|
||||
glibcpp_toolexecdir='$(exec_prefix)/$(target_alias)'
|
||||
glibcpp_toolexeclibdir='$(toolexecdir)/lib$(MULTISUBDIR)'
|
||||
else
|
||||
|
2
libstdc++-v3/aclocal.m4
vendored
2
libstdc++-v3/aclocal.m4
vendored
@ -1581,7 +1581,7 @@ fi
|
||||
# Calculate glibcpp_toolexecdir, glibcpp_toolexeclibdir
|
||||
# Install a library built with a cross compiler in tooldir, not libdir.
|
||||
if test x"$glibcpp_toolexecdir" = x"no"; then
|
||||
if test x"$with_cross_host" = x"yes"; then
|
||||
if test -n "$with_cross_host" && test x"$with_cross_host" != x"no"; then
|
||||
glibcpp_toolexecdir='$(exec_prefix)/$(target_alias)'
|
||||
glibcpp_toolexeclibdir='$(toolexecdir)/lib$(MULTISUBDIR)'
|
||||
else
|
||||
|
2
libstdc++-v3/configure
vendored
2
libstdc++-v3/configure
vendored
@ -15954,7 +15954,7 @@ fi
|
||||
# Calculate glibcpp_toolexecdir, glibcpp_toolexeclibdir
|
||||
# Install a library built with a cross compiler in tooldir, not libdir.
|
||||
if test x"$glibcpp_toolexecdir" = x"no"; then
|
||||
if test x"$with_cross_host" = x"yes"; then
|
||||
if test -n "$with_cross_host" && test x"$with_cross_host" != x"no"; then
|
||||
glibcpp_toolexecdir='$(exec_prefix)/$(target_alias)'
|
||||
glibcpp_toolexeclibdir='$(toolexecdir)/lib$(MULTISUBDIR)'
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user