diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-06-22 12:29:40 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-06-22 12:29:40 -0400 |
commit | c9b60a10529bf7368508d31c89f4eb0e7df7f024 (patch) | |
tree | e8c313cb549e11d6e09635f49f8fc798b04748b7 /compile | |
parent | 5a4afec94f47844126d4642b99acdaee37a14d4a (diff) | |
parent | 8fa33012e926fb370e9119199e0724665e85c6c8 (diff) | |
download | ayatana-indicator-messages-c9b60a10529bf7368508d31c89f4eb0e7df7f024.tar.gz ayatana-indicator-messages-c9b60a10529bf7368508d31c89f4eb0e7df7f024.tar.bz2 ayatana-indicator-messages-c9b60a10529bf7368508d31c89f4eb0e7df7f024.zip |
* New upstream release.
* GTK 3
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" |