diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2010-07-29 13:33:14 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2010-07-29 13:33:14 -0400 |
commit | 1fa02756377589c14a80c0f96426f5b902bede03 (patch) | |
tree | 1c4706f77c5449a39b24170f013dcd9b150e30c2 /compile | |
parent | e6b0746782acf425a1033cbddf00c13b3dae39c3 (diff) | |
parent | 657571f91da4aa7ce96309a0fd234a2a30878140 (diff) | |
download | ayatana-indicator-messages-1fa02756377589c14a80c0f96426f5b902bede03.tar.gz ayatana-indicator-messages-1fa02756377589c14a80c0f96426f5b902bede03.tar.bz2 ayatana-indicator-messages-1fa02756377589c14a80c0f96426f5b902bede03.zip |
Import upstream version 0.3.8
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" |