From 69cc19455b61a3ec1e884a165fae69abe726addb Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 23 Apr 2021 12:36:27 -0700 Subject: [PATCH] ld: Properly create a symbolic link to tmpdir/ldscripts Don't create a symbolic link to tmpdir/ldscripts if it exists. PR ld/27771 * testsuite/ld-bootstrap/bootstrap.exp: Create a symbolic link to tmpdir/ldscripts only if it doesn't exist. --- ld/ChangeLog | 6 ++++++ ld/testsuite/ld-bootstrap/bootstrap.exp | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 93afd53bcc..b736aa805d 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2021-04-23 H.J. Lu + + PR ld/27771 + * testsuite/ld-bootstrap/bootstrap.exp: Create a symbolic link + to tmpdir/ldscripts only if it doesn't exist. + 2021-04-22 Jan Beulich PR ld/26659 diff --git a/ld/testsuite/ld-bootstrap/bootstrap.exp b/ld/testsuite/ld-bootstrap/bootstrap.exp index 2e4a09704a..b21b48ab20 100644 --- a/ld/testsuite/ld-bootstrap/bootstrap.exp +++ b/ld/testsuite/ld-bootstrap/bootstrap.exp @@ -62,7 +62,9 @@ if { [istarget "powerpc-*-*"] } { set gcc_B_opt_save $gcc_B_opt -catch "exec ln -s ../ldscripts tmpdir/ldscripts" status +if {![file exists tmpdir/ldscripts]} then { + catch "exec ln -s ../ldscripts tmpdir/ldscripts" status +} foreach ldexe {ld1 ld2 ld3} { if {![file isdirectory tmpdir/gcc$ldexe]} then { catch "exec mkdir tmpdir/gcc$ldexe" status -- 2.34.1