diff options
author | marha <marha@users.sourceforge.net> | 2010-03-16 09:44:59 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-03-16 09:44:59 +0000 |
commit | 06615d6166af0efaf2893c6b7328b96c5a86b786 (patch) | |
tree | f6771f6813846d2c7aa771f5caef11ee5e398929 /libXt/compile | |
parent | ed13095ef146649dce4a58c891544d7ff31915c7 (diff) | |
parent | b958ead07bdfe03e2d697fd701bdfa82016ae5cb (diff) | |
download | vcxsrv-06615d6166af0efaf2893c6b7328b96c5a86b786.tar.gz vcxsrv-06615d6166af0efaf2893c6b7328b96c5a86b786.tar.bz2 vcxsrv-06615d6166af0efaf2893c6b7328b96c5a86b786.zip |
svn merge ^/branches/released .
Diffstat (limited to 'libXt/compile')
-rw-r--r-- | libXt/compile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libXt/compile b/libXt/compile index ec64c6220..c0096a7b5 100644 --- a/libXt/compile +++ b/libXt/compile @@ -1,7 +1,7 @@ #! /bin/sh # Wrapper for compilers which do not understand `-c -o'. -scriptversion=2009-04-28.21; # UTC +scriptversion=2009-10-06.20; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 Free Software # Foundation, Inc. @@ -124,9 +124,9 @@ trap "rmdir '$lockdir'; exit 1" 1 2 15 ret=$? if test -f "$cofile"; then - mv "$cofile" "$ofile" + test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then - mv "${cofile}bj" "$ofile" + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" |