# HG changeset patch # User Doug Simon # Date 1408435121 -7200 # Node ID a8af2abc2039bafd2d2c5c56273a27536dbca0ec # Parent 7bfbad29d331ae3689564a1628e794d5acc2fbbd fixed regression in mx causing problems for the SYMLINK_GRAAL_JAR feature diff -r 7bfbad29d331 -r a8af2abc2039 mx/mx_graal.py --- a/mx/mx_graal.py Mon Aug 18 21:03:41 2014 -0700 +++ b/mx/mx_graal.py Tue Aug 19 09:58:41 2014 +0200 @@ -556,7 +556,7 @@ if not os.path.islink(dstLib) or not os.path.realpath(dstLib) == src: if exists(dstLib): os.remove(dstLib) - os.symlink(src, dstLib) + os.symlink(src, dstLib) else: # do a copy and then a move to get atomic updating (on Unix) fd, tmp = tempfile.mkstemp(suffix='', prefix=name, dir=dst)