From: Richard Kenner Date: Thu, 23 Feb 1995 13:49:06 +0000 (-0500) Subject: (ld): Add missing backslash to make continuation line. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=919e340a210618bec185f6f1b17ff88accb3609a;p=gcc.git (ld): Add missing backslash to make continuation line. From-SVN: r9052 --- diff --git a/gcc/Makefile.in b/gcc/Makefile.in index fc90cfcb08e..61524dce364 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1023,8 +1023,8 @@ c-iterate.o: c-iterate.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h flags.h # To make a configuration always use collect2, set USE_COLLECT2 to ld. ld: collect2 rm -f ld$(exeext) - ln collect2$(exeext) ld$(exeext) > /dev/null 2>&1 - || cp collect2$(exeext) ld$(exeext) + ln collect2$(exeext) ld$(exeext) > /dev/null 2>&1 \ + || cp collect2$(exeext) ld$(exeext) collect2 : collect2.o version.o $(LIBDEPS) # Don't try modifying collect2 (aka ld) in place--it might be linking this.