From: Jan-Jaap van der Heijden Date: Sun, 7 Sep 1997 16:00:47 +0000 (+0200) Subject: configure.in: Make symlink to as-new rather than as.new. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e41cea70d8db3aefe586685f3de61e2619c9b5ec;p=gcc.git configure.in: Make symlink to as-new rather than as.new. * configure.in: Make symlink to as-new rather than as.new. Similarly for ld-new. * configure: Rebuilt. From-SVN: r15133 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 32daca505b5..92b0a7e9e2d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Sun Sep 7 09:59:08 1997 Jan-Jaap van der Heijden (J.J.vanderHeijden@student.utwente.nl) + + * configure.in: Make symlink to as-new rather than as.new. Similarly + for ld-new. + * configure: Rebuilt. + Fri Sep 5 16:54:55 1997 Jim Wilson * profile.c (output_func_start_profiler): Set DECL_EXTERNAL to zero. diff --git a/gcc/configure b/gcc/configure index 0999828ba84..a214424e377 100755 --- a/gcc/configure +++ b/gcc/configure @@ -4370,15 +4370,15 @@ fi # If we have gas in the build tree, make a link to it. if [ -f ../gas/Makefile ]; then - rm -f as; $symbolic_link ../gas/as.new as 2>/dev/null + rm -f as; $symbolic_link ../gas/as-new as 2>/dev/null fi # If we have ld in the build tree, make a link to it. if [ -f ../ld/Makefile ]; then # if [[ x$use_collect2 = x ]]; then -# rm -f ld; $symbolic_link ../ld/ld.new ld 2>/dev/null +# rm -f ld; $symbolic_link ../ld/ld-new ld 2>/dev/null # else - rm -f collect-ld; $symbolic_link ../ld/ld.new collect-ld 2>/dev/null + rm -f collect-ld; $symbolic_link ../ld/ld-new collect-ld 2>/dev/null # fi fi diff --git a/gcc/configure.in b/gcc/configure.in index bcae8380be6..1210c57e4d8 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -2898,15 +2898,15 @@ fi # If we have gas in the build tree, make a link to it. if [[ -f ../gas/Makefile ]]; then - rm -f as; $symbolic_link ../gas/as.new as 2>/dev/null + rm -f as; $symbolic_link ../gas/as-new as 2>/dev/null fi # If we have ld in the build tree, make a link to it. if [[ -f ../ld/Makefile ]]; then # if [[ x$use_collect2 = x ]]; then -# rm -f ld; $symbolic_link ../ld/ld.new ld 2>/dev/null +# rm -f ld; $symbolic_link ../ld/ld-new ld 2>/dev/null # else - rm -f collect-ld; $symbolic_link ../ld/ld.new collect-ld 2>/dev/null + rm -f collect-ld; $symbolic_link ../ld/ld-new collect-ld 2>/dev/null # fi fi