diff options
author | davem <davem@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-13 20:37:17 +0000 |
---|---|---|
committer | davem <davem@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-13 20:37:17 +0000 |
commit | 0a2a3792460a4fc8618ff49a91fe68561a242c87 (patch) | |
tree | 8d6c9b6a80080305995e50a629f6e7e1fcf8264d /libchill/configure.in | |
parent | 0b6ff5fbb328624d5e980cff21773447689cef25 (diff) | |
download | gcc-0a2a3792460a4fc8618ff49a91fe68561a242c87.tar.gz |
We now fully bootstrap on solaris-2.7 sparcv9.
toplevel:
* config.sub: Recognize sparcv9 just like sparc64.
gcc/ChangeLog:
* configure.in: in sparc9-sol2 config, use 'if test' not
brackets.
* configure: Rebuilt.
* config/sparc/sol2-sld-64.h (SPARC_DEFAULT_CMODEL): Change to
CM_MEDANY.
(CPP_CPU_SPEC): Do not define _LP64, header files do this.
(CPP_CPU_DEFAULT_SPEC): Likewise.
* config/sparc/sol2.h (INIT_SUBTARGET_OPTABS): Get the names right
for arch64 libfuncs.
gcc/java/ChangeLog:
* jcf-io.c: Include string.h.
libchill/ChangeLog:
* configure.in: Use 'if test' not brackets.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22404 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libchill/configure.in')
-rw-r--r-- | libchill/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libchill/configure.in b/libchill/configure.in index e4d2cb592e4..babc64ef20a 100644 --- a/libchill/configure.in +++ b/libchill/configure.in @@ -21,8 +21,8 @@ AC_INIT(chillrt0.c) -if [ "${srcdir}" = "." ] ; then - if [ "${with_target_subdir}" != "." ] ; then +if test "${srcdir}" = "." ; then + if test "${with_target_subdir}" != "." ; then topsrcdir=${with_multisrctop}../.. else topsrcdir=${with_multisrctop}.. |