diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-04-23 12:36:27 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-04-23 12:36:45 -0700 |
commit | 69cc19455b61a3ec1e884a165fae69abe726addb (patch) | |
tree | aa38d2a8b05c9ea95afb541fab69e3a041dddf78 | |
parent | 4d6840c33529db663d7ccc231ba43c0a16320f51 (diff) | |
download | gdb-69cc19455b61a3ec1e884a165fae69abe726addb.zip gdb-69cc19455b61a3ec1e884a165fae69abe726addb.tar.gz gdb-69cc19455b61a3ec1e884a165fae69abe726addb.tar.bz2 |
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.
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-bootstrap/bootstrap.exp | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 93afd53..b736aa8 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2021-04-23 H.J. Lu <hongjiu.lu@intel.com> + + 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 <jbeulich@suse.com> PR ld/26659 diff --git a/ld/testsuite/ld-bootstrap/bootstrap.exp b/ld/testsuite/ld-bootstrap/bootstrap.exp index 2e4a097..b21b48a 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 |