diff options
author | Axel Thimm <Axel.Thimm@physik.fu-berlin.de> | 1999-03-25 01:07:20 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-03-24 18:07:20 -0700 |
commit | b6c8f0b758b2755df83d6ede0352a5159e510abd (patch) | |
tree | f15d09884a60b62dc18c7906572e22ab96b036b7 /gcc/Makefile.in | |
parent | 835c8e044b0f98ee7497281389a60e661588c796 (diff) | |
download | gcc-b6c8f0b758b2755df83d6ede0352a5159e510abd.zip gcc-b6c8f0b758b2755df83d6ede0352a5159e510abd.tar.gz gcc-b6c8f0b758b2755df83d6ede0352a5159e510abd.tar.bz2 |
* Makefile.in (RANLIB_TEST): Improve test.
From-SVN: r25965
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 93eef5e..478163b 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -123,8 +123,7 @@ RANLIB = ranlib # Test to use to see whether ranlib exists on the system. RANLIB_TEST = \ [ -f $(RANLIB) ] \ - || ( [ "$(host_canonical)" = "$(target)" ] \ - && [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ) + || [ -f /usr/bin/ranlib -o -f /bin/ranlib ] # Compiler to use for compiling libgcc1.a. # OLDCC should not be the GNU C compiler, |