From: Doug Evans Date: Tue, 7 Mar 1995 16:56:39 +0000 (+0000) Subject: (install-common): Fix typo in installation of gcc-cross. X-Git-Tag: misc/cutover-egcs-0~4830 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=94a8b9feee8369dc15f004c07b583bcdeb52a15f;p=thirdparty%2Fgcc.git (install-common): Fix typo in installation of gcc-cross. From-SVN: r9126 --- diff --git a/gcc/Makefile.in b/gcc/Makefile.in index a07b789512d5..a40efcbcc666 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2005,7 +2005,7 @@ install-common: native install-dir xgcc $(EXTRA_PARTS) lang.install-common # and also as either gcc (if native) or $(tooldir)/bin/gcc. -if [ -f gcc-cross$(exeext) ] ; then \ rm -f $(bindir)/$(GCC_CROSS_NAME)$(exeext); \ - $(INSTALL_PROGRAM) gcc-cross$(exext) $(bindir)/$(GCC_CROSS_NAME)$(exeext); \ + $(INSTALL_PROGRAM) gcc-cross$(exeext) $(bindir)/$(GCC_CROSS_NAME)$(exeext); \ if [ -d $(tooldir)/bin/. ] ; then \ rm -f $(tooldir)/bin/gcc$(exeext); \ $(INSTALL_PROGRAM) gcc-cross$(exeext) $(tooldir)/bin/gcc$(exeext); \