diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-21 11:24:57 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-21 11:24:57 +0000 |
commit | 032b92e553b58b86d4b04aec0812d0fa7fc3444a (patch) | |
tree | 167c98566962d0c95ef01becc1feed97595124b5 | |
parent | 4239762d1fe9f1cffa0a620bf47279e4098f0ce0 (diff) | |
download | gcc-032b92e553b58b86d4b04aec0812d0fa7fc3444a.zip gcc-032b92e553b58b86d4b04aec0812d0fa7fc3444a.tar.gz gcc-032b92e553b58b86d4b04aec0812d0fa7fc3444a.tar.bz2 |
(LIB_SPEC): Fix the other definition too.
From-SVN: r6131
-rw-r--r-- | gcc/config/m68k/isi.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/config/m68k/isi.h b/gcc/config/m68k/isi.h index 6e98bfa..874cf25 100644 --- a/gcc/config/m68k/isi.h +++ b/gcc/config/m68k/isi.h @@ -44,9 +44,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* If the 68881 is used, link must load libmc.a instead of libc.a */ -#define LIB_SPEC "%{!m68881:%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}} \ -%{m68881:%{!p:%{!pg:-lmc}}%{p:-lmc_p}%{pg:-lmc_p}} \ -%{g:-lg}" +#define LIB_SPEC "%{m68881:%{!p:%{!pg:-lmc}}%{p:-lmc_p}%{pg:-lmc_p}} \ +%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p} %{g:-lg}" #endif /* Names to predefine in the preprocessor for this target machine. */ |