diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-06-17 22:13:53 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-06-17 22:13:53 +0000 |
commit | a3362afa3aebb1120d19bd7cf6bddc9396c09018 (patch) | |
tree | 77157bb1f3df54f56a13f976e54e9622c2176554 /gnu/egcs/libio/configure.in | |
parent | 014390c02bfc260a85d6b5f37372dedc405a7c64 (diff) |
Update to 990608 snapshot.
Highlights:
- official fix for an alpha bug,
- cpp changes semantic slightly,
- valarray in libstdc++.
Diffstat (limited to 'gnu/egcs/libio/configure.in')
-rw-r--r-- | gnu/egcs/libio/configure.in | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/gnu/egcs/libio/configure.in b/gnu/egcs/libio/configure.in index 084e901aabf..9139a1d6a74 100644 --- a/gnu/egcs/libio/configure.in +++ b/gnu/egcs/libio/configure.in @@ -2,18 +2,6 @@ # necessary for a configure script to process the program in # this directory. For more information, look at ../configure. -# find a possible extension of the just-built C++ compiler. Note that this -# is not the only choice, taking into cross and canadian cross into -# account, and we need to search for with and without the extension. -case "${host_alias}" in -*cygwin* | *mingw32*) - EXEEXT=.exe - ;; -*) - EXEEXT= - ;; -esac - # If the language specific compiler does not exist, but the "gcc" directory # does, we do not build anything. Note, $r is set by the top-level Makefile. # Note that when we look for the compiler, we search both with and without @@ -25,7 +13,7 @@ rm -f skip-this-dir if test -n "$r" && [ -z "$norecursion" ] ; then if test -d "$r"/gcc; then if test -f "$r"/gcc/$compiler_name \ - || test -f "$r"/gcc/$compiler_name$EXEEXT; then + || test -f "$r"/gcc/$compiler_name.exe; then true else echo "rm -f multilib.out" > skip-this-dir |