diff options
author | Ted Gould <ted@gould.cx> | 2010-08-12 13:00:38 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-12 13:00:38 -0500 |
commit | 29aa0ccd9eddd9ca25cc927fb8a334ad10ddf83c (patch) | |
tree | a6f7a7051b650d24440105843201241d8a2a15a8 /compile | |
parent | 13f4d0f33e86204dfa6eee1b90a5c0540f875ea3 (diff) | |
parent | 0e3f2551a91fd2e3b0d422a8fce7c1ce97a251d7 (diff) | |
download | ayatana-indicator-messages-29aa0ccd9eddd9ca25cc927fb8a334ad10ddf83c.tar.gz ayatana-indicator-messages-29aa0ccd9eddd9ca25cc927fb8a334ad10ddf83c.tar.bz2 ayatana-indicator-messages-29aa0ccd9eddd9ca25cc927fb8a334ad10ddf83c.zip |
Merging in Ubuntu desktop
Diffstat (limited to 'compile')
-rwxr-xr-x | compile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" |